From 8a2d845a4f7fe1611da79c6d4349d9bcd1117832 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sat, 27 May 2017 18:47:07 -0700 Subject: [PATCH] Fix responsive .col-{infix}-auto Responsive automatic column resets weren't working because they inherited their `max-width` from lower grid tiers. This was because we were resetting the `width`, not the `max-width`. --- scss/mixins/_grid-framework.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scss/mixins/_grid-framework.scss b/scss/mixins/_grid-framework.scss index 5459a86f48..f7346f4a97 100644 --- a/scss/mixins/_grid-framework.scss +++ b/scss/mixins/_grid-framework.scss @@ -36,7 +36,7 @@ } .col#{$infix}-auto { flex: 0 0 auto; - width: auto; + max-width: none; } @for $i from 1 through $columns { -- 2.47.2