From: Shohei Yoshida Date: Thu, 28 Nov 2019 12:33:31 +0000 (+0900) Subject: Fix dart Sass compatibility for subtract (#29763) X-Git-Tag: v5.0.0-alpha1~621 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=37d97c973f6a2d4cb1c7948c4772c9f6276556f6;p=thirdparty%2Fbootstrap.git Fix dart Sass compatibility for subtract (#29763) --- diff --git a/scss/_functions.scss b/scss/_functions.scss index 822678c590..cc37c91f72 100644 --- a/scss/_functions.scss +++ b/scss/_functions.scss @@ -143,5 +143,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); }