Files
sidak/build/scss/_elevation.scss
2026-01-18 14:22:18 +08:00

15 lines
212 B
SCSS

//
// Component: Elevation
//
.elevation-0 {
box-shadow: none !important;
}
// Background colors (colors)
@each $name, $value in $elevations {
.elevation-#{$name} {
box-shadow: $value !important;
}
}