Skip to content

Commit

Permalink
rewrite the fluid grid mixin to be simpler, per twbs#2370
Browse files Browse the repository at this point in the history
  • Loading branch information
mdo committed Mar 12, 2012
1 parent 0090fa1 commit 0630cd6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Binary file modified docs/assets/bootstrap.zip
Binary file not shown.
3 changes: 2 additions & 1 deletion less/mixins.less
Expand Up @@ -568,7 +568,8 @@
.spanX (0) {}

.span (@columns) {
width: 1% * (@fluidGridColumnWidth * @columns) + (@fluidGridGutterWidth * (@columns - 1));
//width: 1% * (@fluidGridColumnWidth * @columns) + (@fluidGridGutterWidth * (@columns - 1));
width: (@fluidGridColumnWidth * @columns) + (@fluidGridGutterWidth * (@columns - 1));
}

.row-fluid {
Expand Down

0 comments on commit 0630cd6

Please sign in to comment.