Skip to content

Commit

Permalink
Fix SASS Deprecations
Browse files Browse the repository at this point in the history
* Use the `unquote` function as suggested to resolve
  deprecation warnings with SASS >= 3.4.20.
* Fixes Compass/compass#2052

SEE: sass/sass#1778
  • Loading branch information
jessedoyle committed Aug 17, 2017
1 parent 191ee59 commit 58aefb1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scss/xy-grid/_gutters.scss
Original file line number Diff line number Diff line change
Expand Up @@ -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}");
}
}
}
Expand All @@ -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}");
}
}
}

0 comments on commit 58aefb1

Please sign in to comment.