Skip to content

Commit 58aa7a4

Browse files
committed
fix(responsive): things made a little bit more responsive
1 parent 053fedb commit 58aa7a4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app/templates/client/app/main/main(html).html

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ <h1>'Allo, 'Allo!</h1>
1212
<div class="row">
1313
<div class="col-lg-12">
1414
<h1 class="page-header">Features:</h1>
15-
<ul class="nav nav-tabs nav-stacked col-lg-6" ng-repeat="thing in awesomeThings">
15+
<ul class="nav nav-tabs nav-stacked col-md-4 col-lg-3 col-xs-6" ng-repeat="thing in awesomeThings">
1616
<li><a href="#" tooltip="{{thing.info}}">{{thing.name}}<% if(filters.socketio) { %><button type="button" class="close" ng-click="deleteThing(thing)">&times;</button><% } %></a></li>
1717
</ul>
1818
</div>

app/templates/client/app/main/main(jade).jade

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ header#banner.hero-unit
1010
.row
1111
.col-lg-12
1212
h1.page-header Features:
13-
ul.nav.nav-tabs.nav-stacked.col-lg-6(ng-repeat='thing in awesomeThings')
13+
ul.nav.nav-tabs.nav-stacked.col-md-4.col-lg-3.col-xs-6(ng-repeat='thing in awesomeThings')
1414
li
1515
a(href='#', tooltip='{{thing.info}}')
1616
| {{thing.name}}<% if(filters.socketio) { %>

0 commit comments

Comments
 (0)