Skip to content

Commit

Permalink
Merge pull request #94 from maxguzenski/2.0.2
Browse files Browse the repository at this point in the history
issue at @mixin gridCore
  • Loading branch information
thomas-mcdonald committed Mar 23, 2012
2 parents 40bf4d1 + d7e5c0e commit 652e956
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions vendor/assets/stylesheets/bootstrap/_mixins.scss
Expand Up @@ -498,6 +498,11 @@

// The Grid
@mixin gridCore($gridColumnWidth, $gridGutterWidth) {
[class*="span"] {
float: left;
margin-left: $gridGutterWidth;
}

@for $i from 1 through $gridColumns {
.span#{$i} { @include gridCoreSpan($i, $gridColumnWidth, $gridGutterWidth) }
}
Expand All @@ -511,11 +516,6 @@
@include clearfix();
}

[class*="span"] {
float: left;
margin-left: $gridGutterWidth;
}

.container, .navbar-fixed-top .container, .navbar-fixed-bottom .container {
@include gridCoreSpan($gridColumns, $gridColumnWidth, $gridGutterWidth);
}
Expand Down

0 comments on commit 652e956

Please sign in to comment.