Fix dart Sass compatibility for subtract (#29763)

This commit is contained in:
Shohei Yoshida 2019-11-28 21:33:31 +09:00 committed by XhmikosR
parent 0964a88ac8
commit 37d97c973f
1 changed files with 1 additions and 1 deletions

View File

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