Skip to content

Commit

Permalink
Fix dart Sass compatibility for subtract (#29763)
Browse files Browse the repository at this point in the history
  • Loading branch information
ysds authored and XhmikosR committed Nov 28, 2019
1 parent 3e436fd commit 6f02536
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scss/_functions.scss
Expand Up @@ -130,5 +130,5 @@
@return $value1 - $value2;
}

@return if($return-calc == true, calc(#{$value1} - #{$value2}), #{$value1} - #{$value2});
@return if($return-calc == true, calc(#{$value1} - #{$value2}), $value1 + unquote(" - ") + $value2);
}

0 comments on commit 6f02536

Please sign in to comment.