aboutsummaryrefslogtreecommitdiff
path: root/less
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2013-09-01 11:06:33 +0200
committerMark Otto <[email protected]>2013-09-01 11:06:33 +0200
commit50bf4d47b17f07627309dfd76f557ca28b9c94a6 (patch)
treef6d3d9ad99677131369a7324f3f23120182c0133 /less
parent25cc04c5abd07928b6df34aa582da85ccd49a526 (diff)
downloadbootstrap-50bf4d47b17f07627309dfd76f557ca28b9c94a6.tar.xz
bootstrap-50bf4d47b17f07627309dfd76f557ca28b9c94a6.zip
reverse vars for backwards compatibility /cc @cvrebert
Diffstat (limited to 'less')
-rw-r--r--less/variables.less12
1 files changed, 6 insertions, 6 deletions
diff --git a/less/variables.less b/less/variables.less
index 022f5ff87..f7286c69a 100644
--- a/less/variables.less
+++ b/less/variables.less
@@ -622,13 +622,13 @@
// --------------------------------------------------
// Small screen / tablet
-@container-sm: ((720px + @grid-gutter-width));
-@container-tablet: @container-sm;
+@container-tablet: ((720px + @grid-gutter-width));
+@container-sm: @container-tablet;
// Medium screen / desktop
-@container-md: ((940px + @grid-gutter-width));
-@container-desktop: @container-md;
+@container-desktop: ((940px + @grid-gutter-width));
+@container-md: @container-desktop;
// Large screen / wide desktop
-@container-lg: ((1140px + @grid-gutter-width));
-@container-large-desktop: @container-lg;
+@container-large-desktop: ((1140px + @grid-gutter-width));
+@container-lg: @container-large-desktop;