0
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-01-30 22:52:24 +01:00

reverse vars for backwards compatibility /cc @cvrebert

This commit is contained in:
Mark Otto 2013-09-01 11:06:33 +02:00
parent 25cc04c5ab
commit 50bf4d47b1

View File

@ -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;