From 58aefb1ae16388bceb3457d47400e313c49462ec 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/Compass/compass/issues/2052 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 3ab987ea135..e8efb714d54 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}"); } } }