diff options
| author | Emanuele Gaspari <[email protected]> | 2012-02-21 19:19:15 +0100 |
|---|---|---|
| committer | Emanuele Gaspari <[email protected]> | 2012-02-21 19:19:15 +0100 |
| commit | 1cfb3fd03a529847ec1023c873fe71fbc279bfc1 (patch) | |
| tree | c26780dba166e7a8d6508f4b06e17e1ab5aab42c /less/responsive.less | |
| parent | 45cec4a6fa0145611dcc9ac4b4d6f56aa759e7e8 (diff) | |
| download | bootstrap-1cfb3fd03a529847ec1023c873fe71fbc279bfc1.tar.xz bootstrap-1cfb3fd03a529847ec1023c873fe71fbc279bfc1.zip | |
substituted hard-coded number of columns (12) with @gridColumns
Diffstat (limited to 'less/responsive.less')
| -rw-r--r-- | less/responsive.less | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/less/responsive.less b/less/responsive.less index 8c39f088e..41dcd247a 100644 --- a/less/responsive.less +++ b/less/responsive.less @@ -157,13 +157,13 @@ @media (min-width: 768px) and (max-width: 979px) { // Fixed grid - #gridSystem > .generate(12, 42px, 20px); + #gridSystem > .generate(@gridColumns, 42px, 20px); // Fluid grid - #fluidGridSystem > .generate(12, 5.801104972%, 2.762430939%); + #fluidGridSystem > .generate(@gridColumns, 5.801104972%, 2.762430939%); // Input grid - #inputGridSystem > .generate(12, 42px, 20px); + #inputGridSystem > .generate(@gridColumns, 42px, 20px); } @@ -309,13 +309,13 @@ @media (min-width: 1200px) { // Fixed grid - #gridSystem > .generate(12, 70px, 30px); + #gridSystem > .generate(@gridColumns, 70px, 30px); // Fluid grid - #fluidGridSystem > .generate(12, 5.982905983%, 2.564102564%); + #fluidGridSystem > .generate(@gridColumns, 5.982905983%, 2.564102564%); // Input grid - #inputGridSystem > .generate(12, 70px, 30px); + #inputGridSystem > .generate(@gridColumns, 70px, 30px); // Thumbnails .thumbnails { |
