0
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-02-07 04:54: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 // Small screen / tablet
@container-sm: ((720px + @grid-gutter-width)); @container-tablet: ((720px + @grid-gutter-width));
@container-tablet: @container-sm; @container-sm: @container-tablet;
// Medium screen / desktop // Medium screen / desktop
@container-md: ((940px + @grid-gutter-width)); @container-desktop: ((940px + @grid-gutter-width));
@container-desktop: @container-md; @container-md: @container-desktop;
// Large screen / wide desktop // Large screen / wide desktop
@container-lg: ((1140px + @grid-gutter-width)); @container-large-desktop: ((1140px + @grid-gutter-width));
@container-large-desktop: @container-lg; @container-lg: @container-large-desktop;