From a4cac3f36dca3ddc891262bf5470bc29dda9fcba Mon Sep 17 00:00:00 2001 From: Nicolas Coden Date: Thu, 28 Jun 2018 19:32:12 +0200 Subject: [PATCH] fix: remove $-zf-size from non-responsive XY Grid classes generation `$-zf-size` is only set within breakpoints. Breakpoints are not expected to be used around the `xy-vertical-grid-classes()` mixin. Note: a more appropriate fix would be to rely on the `xy-cell()` mixin instead of `xy-cell-static()` to fully support explicit/implicit/null breakpoint option. However this may introduce breaking changes, so this will be kept for v6.6.0. [This fix is compatible with v6.5] --- scss/xy-grid/_classes.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scss/xy-grid/_classes.scss b/scss/xy-grid/_classes.scss index c967c70bb0..657c0dffe4 100644 --- a/scss/xy-grid/_classes.scss +++ b/scss/xy-grid/_classes.scss @@ -273,11 +273,11 @@ } > .auto { - @include xy-cell-static(auto, false, $breakpoint: $-zf-size, $vertical: true); + @include xy-cell-static(auto, false, $vertical: true); } > .shrink { - @include xy-cell-static(shrink, false, $breakpoint: $-zf-size, $vertical: true); + @include xy-cell-static(shrink, false, $vertical: true); }