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

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

parent 0090fa1a
Showing with 2 additions and 1 deletion
+2 -1
No preview for this file type
...@@ -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 {
......
Supports Markdown
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