Skip to content

Commit

Permalink
fix(responsive): things made a little bit more responsive
Browse files Browse the repository at this point in the history
  • Loading branch information
meeDamian committed Jul 26, 2014
1 parent 053fedb commit 58aa7a4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/templates/client/app/main/main(html).html
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ <h1>'Allo, 'Allo!</h1>
<div class="row">
<div class="col-lg-12">
<h1 class="page-header">Features:</h1>
<ul class="nav nav-tabs nav-stacked col-lg-6" ng-repeat="thing in awesomeThings">
<ul class="nav nav-tabs nav-stacked col-md-4 col-lg-3 col-xs-6" ng-repeat="thing in awesomeThings">
<li><a href="#" tooltip="{{thing.info}}">{{thing.name}}<% if(filters.socketio) { %><button type="button" class="close" ng-click="deleteThing(thing)">&times;</button><% } %></a></li>
</ul>
</div>
Expand Down
2 changes: 1 addition & 1 deletion app/templates/client/app/main/main(jade).jade
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ header#banner.hero-unit
.row
.col-lg-12
h1.page-header Features:
ul.nav.nav-tabs.nav-stacked.col-lg-6(ng-repeat='thing in awesomeThings')
ul.nav.nav-tabs.nav-stacked.col-md-4.col-lg-3.col-xs-6(ng-repeat='thing in awesomeThings')
li
a(href='#', tooltip='{{thing.info}}')
| {{thing.name}}<% if(filters.socketio) { %>
Expand Down

0 comments on commit 58aa7a4

Please sign in to comment.