]> git.ipfire.org Git - thirdparty/foundation/foundation-sites.git/commitdiff
Set the min-width value to 0 in order to limit the column width 9846/head
authorNate Wiebe <nate@northern.co>
Mon, 6 Mar 2017 19:25:40 +0000 (14:25 -0500)
committerNate Wiebe <nate@northern.co>
Mon, 6 Mar 2017 19:25:40 +0000 (14:25 -0500)
scss/grid/_flex-grid.scss

index 8d424e562e578ce17b29eda27d58ac4ac2005317..b3d8b9355bb225701945991463c2f1352a6ff22c 100644 (file)
@@ -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 {