From e02306548064127fbee404cff84f5fe85499a999 Mon Sep 17 00:00:00 2001 From: Adam Wathan Date: Sun, 6 Aug 2017 07:59:16 -0400 Subject: [PATCH] Set min-width on non-responsive auto columns Had already done this on responsive variants, missed adding it to the base variant. Without this, auto columns are not forced to the same width. --- src/generators/grid.less | 1 + 1 file changed, 1 insertion(+) diff --git a/src/generators/grid.less b/src/generators/grid.less index cef598102..0c55c0e3e 100644 --- a/src/generators/grid.less +++ b/src/generators/grid.less @@ -49,6 +49,7 @@ flex-grow: 1; flex-basis: 0; max-width: 100%; + min-width: 0; } .col-first { order: -1;