7 lines
218 B
SCSS
7 lines
218 B
SCSS
@use "sass:map";
|
|
@use "@configured-variables" as variables;
|
|
|
|
@mixin custom-elevation($color, $size) {
|
|
box-shadow: (map.get(variables.$shadow-params, $size) rgba($color, map.get(variables.$shadow-opacity, $size)));
|
|
}
|