From 2f430877d1a4f712542649782cf6b73747d56e56 Mon Sep 17 00:00:00 2001 From: Roland Kalocsaven Date: Mon, 19 Dec 2016 14:22:58 +0000 Subject: [PATCH] use prefixed flex-basis in grid-column mixin flex-basis is not recognized on Safari 8, needs to be prefixed. --- src/_scss/mixins/_grid.scss | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/_scss/mixins/_grid.scss b/src/_scss/mixins/_grid.scss index 9732bfd..fcc27c8 100755 --- a/src/_scss/mixins/_grid.scss +++ b/src/_scss/mixins/_grid.scss @@ -12,9 +12,9 @@ $width: (100% / $grid-columns) * $num; - flex-basis: $width; - max-width: $width; - width: $width; + @include flex-basis($width); + max-width: $width; + width: $width; } // column offset @@ -46,4 +46,4 @@ -moz-column-count: 1; column-count: 1; } -} \ No newline at end of file +}