Commit 50bf4d47 authored by Mark Otto's avatar Mark Otto

reverse vars for backwards compatibility /cc @cvrebert

parent 25cc04c5
...@@ -622,13 +622,13 @@ ...@@ -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;
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment