From: Nate Wiebe Date: Mon, 6 Mar 2017 19:25:40 +0000 (-0500) Subject: Set the min-width value to 0 in order to limit the column width X-Git-Tag: v6.4.0-rc1~96^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dc25d9666fad02478274dc3c9f1421caba9bc01f;p=thirdparty%2Ffoundation%2Ffoundation-sites.git Set the min-width value to 0 in order to limit the column width --- 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 {