Skip to content

Commit

Permalink
Changing variable order in grid.less
Browse files Browse the repository at this point in the history
  • Loading branch information
Tyler Tate committed Aug 19, 2011
1 parent e926655 commit 21f9b81
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions css/grid.less
Expand Up @@ -3,6 +3,9 @@
@gutter-width: 20;
@columns: 12;

// Utility variable — you should never need to modify this
@_gridsystem-width: (@column-width*@columns) + (@gutter-width*@columns) * 1px;

// Set @total-width to 100% for a fluid layout
@total-width: @_gridsystem-width;

Expand All @@ -11,10 +14,6 @@
// GRID //
//////////

// Utility variable — you should never need to modify this
@_gridsystem-width: (@column-width*@columns) + (@gutter-width*@columns) * 1px;

//
body {
width: 100%;
float: left;
Expand Down

0 comments on commit 21f9b81

Please sign in to comment.