Skip to content

Commit

Permalink
Fix dart Sass compatibility (#29755)
Browse files Browse the repository at this point in the history
  • Loading branch information
MartijnCuppens authored and XhmikosR committed Nov 28, 2019
1 parent bf1d7f7 commit 331a0c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scss/_functions.scss
Expand Up @@ -110,7 +110,7 @@
@return $value1 + $value2;
}

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

@function subtract($value1, $value2, $return-calc: true) {
Expand Down

0 comments on commit 331a0c1

Please sign in to comment.