diff options
| author | Shohei Yoshida <[email protected]> | 2019-11-28 21:33:31 +0900 |
|---|---|---|
| committer | XhmikosR <[email protected]> | 2019-11-28 14:33:31 +0200 |
| commit | 37d97c973f6a2d4cb1c7948c4772c9f6276556f6 (patch) | |
| tree | 010c4f4937147317e979786770e7e6cd3427e908 | |
| parent | 0964a88ac83d01395476695dd6a1307878543c13 (diff) | |
| download | bootstrap-37d97c973f6a2d4cb1c7948c4772c9f6276556f6.tar.xz bootstrap-37d97c973f6a2d4cb1c7948c4772c9f6276556f6.zip | |
Fix dart Sass compatibility for subtract (#29763)
| -rw-r--r-- | scss/_functions.scss | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scss/_functions.scss b/scss/_functions.scss index 822678c59..cc37c91f7 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); } |
