Skip to content

Commit

Permalink
Use CSS box-shadow variables in shadow utility classes (twbs#38816)
Browse files Browse the repository at this point in the history
  • Loading branch information
craigiswayne authored and romankupchak93 committed Jan 5, 2024
1 parent 03693e1 commit 2edec88
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scss/_utilities.scss
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 2edec88

Please sign in to comment.