Commit 0630cd62 authored by Mark Otto's avatar Mark Otto

rewrite the fluid grid mixin to be simpler, per #2370

parent 0090fa1a
...@@ -568,7 +568,8 @@ ...@@ -568,7 +568,8 @@
.spanX (0) {} .spanX (0) {}
.span (@columns) { .span (@columns) {
width: 1% * (@fluidGridColumnWidth * @columns) + (@fluidGridGutterWidth * (@columns - 1)); //width: 1% * (@fluidGridColumnWidth * @columns) + (@fluidGridGutterWidth * (@columns - 1));
width: (@fluidGridColumnWidth * @columns) + (@fluidGridGutterWidth * (@columns - 1));
} }
.row-fluid { .row-fluid {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment