1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-08-30 00:29:52 +02:00

Move around box shadow vars

This commit is contained in:
Mark Otto
2025-04-14 09:58:07 -07:00
parent 13a3d3e744
commit f9c74a0974
2 changed files with 9 additions and 8 deletions

View File

@@ -1,6 +1,7 @@
@use "config" as *;
@use "colors" as *;
@use "functions" as *;
@use "vendor/rfs" as *;
// Variables
//
@@ -273,10 +274,10 @@ $border-radii: (
) !default;
// scss-docs-start box-shadow-variables
$box-shadow: 0 .5rem 1rem rgba($black, .15) !default;
$box-shadow-sm: 0 .125rem .25rem rgba($black, .075) !default;
$box-shadow-lg: 0 1rem 3rem rgba($black, .175) !default;
$box-shadow-inset: inset 0 1px 2px rgba($black, .075) !default;
$box-shadow: var(--#{$prefix}box-shadow) !default;
$box-shadow-sm: var(--#{$prefix}box-shadow-sm) !default;
$box-shadow-lg: var(--#{$prefix}box-shadow-lg) !default;
$box-shadow-inset: var(--#{$prefix}box-shadow-inset) !default;
// scss-docs-end box-shadow-variables
$component-active-color: $white !default;