aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartijn Cuppens <[email protected]>2019-11-24 20:20:03 +0100
committerGitHub <[email protected]>2019-11-24 20:20:03 +0100
commit787256cae401f9ebd8bea1391343a58140d0f235 (patch)
tree3beefb47a707c44fb38655242b587f4f798781ba
parent0caed940a578cb920a750dc0ce287c7d71e59a3e (diff)
downloadbootstrap-787256cae401f9ebd8bea1391343a58140d0f235.tar.xz
bootstrap-787256cae401f9ebd8bea1391343a58140d0f235.zip
Compressed Sass output support (#29702)
-rw-r--r--scss/_utilities.scss20
1 files changed, 10 insertions, 10 deletions
diff --git a/scss/_utilities.scss b/scss/_utilities.scss
index ad91d2d2b..1f3c7b4ac 100644
--- a/scss/_utilities.scss
+++ b/scss/_utilities.scss
@@ -77,7 +77,7 @@ $utilities: map-merge(
"border-color": (
property: border-color,
class: border,
- values: map-merge($theme-colors, (white: $white))
+ values: map-merge($theme-colors, ("white": $white))
),
// Sizing utilities
"width": (
@@ -385,12 +385,12 @@ $utilities: map-merge(
values: map-merge(
$theme-colors,
(
- white: $white,
- body: $body-color,
- muted: $text-muted,
- black-50: rgba($black, .5),
- white-50: rgba($white, .5),
- reset: inherit,
+ "white": $white,
+ "body": $body-color,
+ "muted": $text-muted,
+ "black-50": rgba($black, .5),
+ "white-50": rgba($white, .5),
+ "reset": inherit,
)
)
),
@@ -410,9 +410,9 @@ $utilities: map-merge(
values: map-merge(
$theme-colors,
(
- body: $body-bg,
- white: $white,
- transparent: transparent
+ "body": $body-bg,
+ "white": $white,
+ "transparent": transparent
)
)
),