1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2025-02-23 23:07:46 +01:00

fix: File SCSS di Icon Button mancante

This commit is contained in:
Maicol Battistini 2022-03-02 13:57:30 +01:00
parent 8fed113aae
commit 6cca0d2b7e
No known key found for this signature in database
GPG Key ID: 4FDB0F87CDB1D34A

View File

@ -0,0 +1,10 @@
@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);
}
}