mirror of
https://github.com/devcode-it/openstamanager.git
synced 2025-06-05 22:09:38 +02:00
11 lines
277 B
SCSS
Vendored
11 lines
277 B
SCSS
Vendored
@use '@material/icon-button';
|
|
|
|
$sizes: ("tight": -1, "comfortable": -2, "dense": -3, "compact": -4, 'extra-compact': -5);
|
|
|
|
@each $density, $value in $sizes {
|
|
//noinspection Stylelint
|
|
.mdc-icon-button--#{$density} {
|
|
@include icon-button.density($value);
|
|
}
|
|
}
|