Skip to content

Commit

Permalink
fix(bootstrap): removed styles breaking responsiveness for high-res s…
Browse files Browse the repository at this point in the history
…creens
  • Loading branch information
meeDamian committed Jul 26, 2014
1 parent 46466b1 commit 053fedb
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions app/templates/client/app/app(css).css
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@
color: #000;
padding: 0.2em 0;
}

<% if (!filters.bootstrap) { %>
/* Responsive: Portrait tablets and up */
@media screen and (min-width: 768px) {
.container {
max-width: 730px;
}
}
}<% } %>
4 changes: 2 additions & 2 deletions app/templates/client/app/app(less).less
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@
color: #000;
padding: 0.2em 0;
}

<% if (!filters.bootstrap) { %>
/* Responsive: Portrait tablets and up */
@media screen and (min-width: 768px) {
.container {
max-width: 730px;
}
}

<% } %>
// injector
@import 'account/login/login.less';
@import 'admin/admin.less';
Expand Down
4 changes: 2 additions & 2 deletions app/templates/client/app/app(sass).scss
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ $fa-font-path: "/bower_components/font-awesome/fonts";
color: #000;
padding: 0.2em 0;
}

<% if (!filters.bootstrap) { %>
/* Responsive: Portrait tablets and up */
@media screen and (min-width: 768px) {
.container {
max-width: 730px;
}
}

<% } %>
// Component styles are injected through grunt
// injector
@import 'account/login/login.scss';
Expand Down
8 changes: 4 additions & 4 deletions app/templates/client/app/app(stylus).styl
Original file line number Diff line number Diff line change
Expand Up @@ -27,21 +27,21 @@
font-weight: normal
font-style: normal

//
//
// App-wide Styles
//
//

.browsehappy
background #ccc
color #000
margin 0.2em 0
padding 0.2em 0

<% if (!filters.bootstrap) { %>
// Responsive: Portrait tablets and up
@media screen and (min-width: 768px)
.container
max-width 730px

<% } %>
// Component styles are injected through grunt
// injector
@import "account/login/login"
Expand Down

0 comments on commit 053fedb

Please sign in to comment.