Skip to content

Commit

Permalink
Grid partial - found more instances of container class to make vari…
Browse files Browse the repository at this point in the history
…ables #14
  • Loading branch information
justinhough committed Oct 31, 2014
1 parent bef2bfa commit 6dea280
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/sass/centurion/_grid.scss
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@
// Small Desktop Grid
// ----------------------------
@media screen and (max-width: $content-width + $value) {
.container {
.#{$container-class} {
width: 100%;
}
@include hide-view(desktop);
Expand All @@ -219,7 +219,7 @@
// Tablet Grid
// ----------------------------
@media screen and (max-width: $tablet-content-width + $value) {
.container {
.#{$container-class} {
@include grid($desktop-columns, $grid-class, false, "tablet");
}

Expand All @@ -235,7 +235,7 @@
}
// Mobile Grid
@media screen and (max-width: $mobile-content-width + $value) {
.container {
.#{$container-class} {
@include grid($desktop-columns, $grid-class, false, "mobile");
[class*="push-"],
[class*="pull-"] {
Expand All @@ -257,7 +257,7 @@
@if $ie7-support == true {
// Large Destkop Grid
// ----------------------------
.container {
.#{$container-class} {
@extend %clearfix;
margin: 0 auto;
padding: 0;
Expand Down

0 comments on commit 6dea280

Please sign in to comment.