Skip to content

Commit

Permalink
Compressed Sass output support (twbs#29702)
Browse files Browse the repository at this point in the history
  • Loading branch information
MartijnCuppens committed Nov 24, 2019
1 parent 0caed94 commit 787256c
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions scss/_utilities.scss
Original file line number Diff line number Diff line change
Expand Up @@ -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": (
Expand Down Expand Up @@ -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,
)
)
),
Expand All @@ -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
)
)
),
Expand Down

0 comments on commit 787256c

Please sign in to comment.