From 92b808198105539c306c8d0be4bd3db936f4a76d Mon Sep 17 00:00:00 2001 From: Jesse Doyle Date: Thu, 17 Aug 2017 16:27:06 -0600 Subject: [PATCH] Fix SASS Deprecations * Use the `unquote` function as suggested to resolve deprecation warnings with SASS >= 3.4.20. * Fixes https://github.com/zurb/foundation-sites/issues/10534. SEE: https://github.com/sass/sass/issues/1778 --- scss/xy-grid/_gutters.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scss/xy-grid/_gutters.scss b/scss/xy-grid/_gutters.scss index 3ab987ea1..e8efb714d 100644 --- a/scss/xy-grid/_gutters.scss +++ b/scss/xy-grid/_gutters.scss @@ -30,7 +30,7 @@ // Loop through each gutter position @each $value in $gutter-position { - #{$gutter-type}-#{$value}: #{$operator}$gutter; + #{$gutter-type}-#{$value}: unquote("#{$operator}#{$gutter}"); } } } @@ -39,7 +39,7 @@ // Loop through each gutter position @each $value in $gutter-position { - #{$gutter-type}-#{$value}: #{$operator}$gutter; + #{$gutter-type}-#{$value}: unquote("#{$operator}#{$gutter}"); } } } -- 2.47.2