diff options
| author | Craig Wayne <[email protected]> | 2023-07-27 21:46:12 +0100 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-07-27 22:46:12 +0200 |
| commit | c81a694ff3363c37b5ac8f8dbcb3f6ce90d350dd (patch) | |
| tree | 4127356da199cca5d1b8de97dd5a76d72cdb0fa6 /scss | |
| parent | 5a97018a9ae42ed645cf34ef78128abb440905af (diff) | |
| download | bootstrap-c81a694ff3363c37b5ac8f8dbcb3f6ce90d350dd.tar.xz bootstrap-c81a694ff3363c37b5ac8f8dbcb3f6ce90d350dd.zip | |
Use CSS box-shadow variables in shadow utility classes (#38816)
Diffstat (limited to 'scss')
| -rw-r--r-- | scss/_utilities.scss | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scss/_utilities.scss b/scss/_utilities.scss index e6069c909..696f906ec 100644 --- a/scss/_utilities.scss +++ b/scss/_utilities.scss @@ -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, ) ), |
