1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-08-26 23:04:32 +02:00

Fix dart Sass compatibility (#29755)

This commit is contained in:
Martijn Cuppens
2019-11-28 08:48:33 +01:00
committed by XhmikosR
parent 301ee1972d
commit c24aaa6cbf

View File

@@ -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) {