From: Nicolas Coden Date: Wed, 27 Apr 2016 17:18:32 +0000 (+0200) Subject: Prevent breaking change of default flex-grid-size value X-Git-Tag: v6.3-rc1~65^2 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F8510%2Fhead;p=thirdparty%2Ffoundation%2Ffoundation-sites.git Prevent breaking change of default flex-grid-size value --- diff --git a/scss/grid/_flex-grid.scss b/scss/grid/_flex-grid.scss index 20d8838a2..0a6ce324c 100644 --- a/scss/grid/_flex-grid.scss +++ b/scss/grid/_flex-grid.scss @@ -129,7 +129,9 @@ /// Changes the width flex grid column. /// @param {Mixed} $columns [expand] - Width of the column. Refer to the `flex-grid-column()` function to see possible values. -@mixin flex-grid-size($columns: expand) { +@mixin flex-grid-size($columns: null) { + $columns: $columns or expand; + flex: flex-grid-column($columns); // max-width fixes IE 10/11 not respecting the flex-basis property