Skip to content

Commit

Permalink
fix(elevation): ambient opacity value should use own variable key
Browse files Browse the repository at this point in the history
  • Loading branch information
brownsugar committed Jan 8, 2024
1 parent 60b2abd commit 4016d83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/vuetify/src/styles/settings/_elevations.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

$shadow-key-umbra-opacity: var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)) !default;
$shadow-key-penumbra-opacity: var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)) !default;
$shadow-key-ambient-opacity: var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.12)) !default;
$shadow-key-ambient-opacity: var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12)) !default;

$shadow-key-umbra: () !default;
$shadow-key-umbra: map-deep-merge(
Expand Down

0 comments on commit 4016d83

Please sign in to comment.