From dc25d9666fad02478274dc3c9f1421caba9bc01f Mon Sep 17 00:00:00 2001 From: Nate Wiebe Date: Mon, 6 Mar 2017 14:25:40 -0500 Subject: [PATCH] Set the min-width value to 0 in order to limit the column width --- 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 8d424e562..b3d8b9355 100644 --- a/scss/grid/_flex-grid.scss +++ b/scss/grid/_flex-grid.scss @@ -86,7 +86,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 == expand { - min-width: initial; + min-width: 0; } // max-width fixes IE 10/11 not respecting the flex-basis property @if $columns != expand and $columns != shrink { -- 2.47.2