Skip to content

Commit

Permalink
Use CSS box-shadow variables in shadow utility classes (#38816)
Browse files Browse the repository at this point in the history
  • Loading branch information
craigiswayne committed Jul 27, 2023
1 parent 5a97018 commit c81a694
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scss/_utilities.scss
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,9 @@ $utilities: map-merge(
property: box-shadow,
class: shadow,
values: (
null: $box-shadow,
sm: $box-shadow-sm,
lg: $box-shadow-lg,
null: var(--#{$prefix}box-shadow),
sm: var(--#{$prefix}box-shadow-sm),
lg: var(--#{$prefix}box-shadow-lg),
none: none,
)
),
Expand Down

0 comments on commit c81a694

Please sign in to comment.