diff options
| author | Kevin <[email protected]> | 2013-04-27 18:47:47 +0200 |
|---|---|---|
| committer | Kevin <[email protected]> | 2013-04-27 18:47:47 +0200 |
| commit | 9ce7f22e991804cd08c4dc612cd929d07dc0a28f (patch) | |
| tree | a34e28de0477c1f668aef8244d881e00d7cd9391 /less/grid.less | |
| parent | 8ae9c6ab34128ea863343abaeff39ca7c6f4618c (diff) | |
| download | bootstrap-9ce7f22e991804cd08c4dc612cd929d07dc0a28f.tar.xz bootstrap-9ce7f22e991804cd08c4dc612cd929d07dc0a28f.zip | |
Adding media queries breakpoints variables
Diffstat (limited to 'less/grid.less')
| -rw-r--r-- | less/grid.less | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/less/grid.less b/less/grid.less index 8162d9940..3ac727bc7 100644 --- a/less/grid.less +++ b/less/grid.less @@ -26,7 +26,7 @@ .generate-small-grid-columns(@grid-columns); // Responsive: Tablets and up -@media screen and (min-width: 768px) { +@media screen and (min-width: @screen-tablet) { .container { max-width: 728px; } @@ -38,14 +38,14 @@ } // Responsive: Desktops and up -@media screen and (min-width: 992px) { +@media screen and (min-width: @screen-desktop) { .container { max-width: 940px; } } // Responsive: Large desktops and up -@media screen and (min-width: 1200px) { +@media screen and (min-width: @screen-large-desktop) { .container { max-width: 1170px; } |
