Commit e12d6208 authored by Chris Rebert's avatar Chris Rebert
Browse files

un-hardcode @grid-gutter-width in @container-* LESS vars

parent 6a8cc191
1 merge request!9726un-hardcode @grid-gutter-width in @container-* LESS vars
Showing with 3 additions and 3 deletions
+3 -3
...@@ -600,10 +600,10 @@ ...@@ -600,10 +600,10 @@
// -------------------------------------------------- // --------------------------------------------------
// Small screen / tablet // Small screen / tablet
@container-tablet: 750px; // 720px + 30px left/right padding @container-tablet: ((720px + @grid-gutter-width));
// Medium screen / desktop // Medium screen / desktop
@container-desktop: 970px; // 940px + 30px left/right padding @container-desktop: ((940px + @grid-gutter-width));
// Large screen / wide desktop // Large screen / wide desktop
@container-large-desktop: 1170px; // 1140px + 30px left/right padding @container-large-desktop: ((1140px + @grid-gutter-width));
Supports Markdown
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