From: Léo Colombaro Date: Tue, 4 Jul 2017 17:00:52 +0000 (+0200) Subject: remove `flex-grid-column()` duplicate `max-width` X-Git-Tag: v6.4.2-rc2~1^2~34^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F10341%2Fhead;p=thirdparty%2Ffoundation%2Ffoundation-sites.git remove `flex-grid-column()` duplicate `max-width` Very small fix inside `flex-grid-column()` mixin: `max-width` fix is added twice: call to `flex-grid-size()` already import this fix once. --- diff --git a/scss/grid/_flex-grid.scss b/scss/grid/_flex-grid.scss index 31012424b..61a6d2dae 100644 --- a/scss/grid/_flex-grid.scss +++ b/scss/grid/_flex-grid.scss @@ -88,10 +88,6 @@ @if $columns == expand { min-width: 0; } - // max-width fixes IE 10/11 not respecting the flex-basis property - @if $columns != expand and $columns != shrink { - max-width: grid-column($columns); - } } /// Creates a block grid for a flex grid row.