* 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
// Loop through each gutter position
@each $value in $gutter-position {
- #{$gutter-type}-#{$value}: #{$operator}$gutter;
+ #{$gutter-type}-#{$value}: unquote("#{$operator}#{$gutter}");
}
}
}
// Loop through each gutter position
@each $value in $gutter-position {
- #{$gutter-type}-#{$value}: #{$operator}$gutter;
+ #{$gutter-type}-#{$value}: unquote("#{$operator}#{$gutter}");
}
}
}