aboutsummaryrefslogtreecommitdiff
path: root/less/grid.less
diff options
context:
space:
mode:
authorKevin <[email protected]>2013-04-27 18:47:47 +0200
committerKevin <[email protected]>2013-04-27 18:47:47 +0200
commit9ce7f22e991804cd08c4dc612cd929d07dc0a28f (patch)
treea34e28de0477c1f668aef8244d881e00d7cd9391 /less/grid.less
parent8ae9c6ab34128ea863343abaeff39ca7c6f4618c (diff)
downloadbootstrap-9ce7f22e991804cd08c4dc612cd929d07dc0a28f.tar.xz
bootstrap-9ce7f22e991804cd08c4dc612cd929d07dc0a28f.zip
Adding media queries breakpoints variables
Diffstat (limited to 'less/grid.less')
-rw-r--r--less/grid.less6
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;
}