From 5fe4d37f3292fbe6c6cee5efeb6daa77c3cbb25e Mon Sep 17 00:00:00 2001 From: Daniel Schuba Date: Tue, 10 May 2016 14:28:58 +0200 Subject: [PATCH] Fix for bug introduced with #8511 --- scss/grid/_flex-grid.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scss/grid/_flex-grid.scss b/scss/grid/_flex-grid.scss index c746e4735..deec68133 100644 --- a/scss/grid/_flex-grid.scss +++ b/scss/grid/_flex-grid.scss @@ -99,7 +99,7 @@ // fixes recent Chrome version not limiting child width // https://stackoverflow.com/questions/34934586/white-space-nowrap-and-flexbox-did-not-work-in-chrome @if $columns == null { - min-width: 0; + min-width: intial; } // max-width fixes IE 10/11 not respecting the flex-basis property @if $columns != null and $columns != shrink { -- 2.47.2