mirror of
https://github.com/cinnyapp/cinny.git
synced 2025-02-24 22:23:06 +01:00
25 lines
No EOL
479 B
SCSS
25 lines
No EOL
479 B
SCSS
@mixin icSize($size) {
|
|
width: $size;
|
|
height: $size;
|
|
}
|
|
|
|
.ic-raw {
|
|
display: inline-block;
|
|
-webkit-mask-repeat: no-repeat;
|
|
mask-repeat: no-repeat;
|
|
-webkit-mask-size: cover;
|
|
mask-size: cover;
|
|
background-color: var(--ic-surface-normal);
|
|
}
|
|
.ic-raw-large {
|
|
@include icSize(var(--ic-large));
|
|
}
|
|
.ic-raw-normal {
|
|
@include icSize(var(--ic-normal));
|
|
}
|
|
.ic-raw-small {
|
|
@include icSize(var(--ic-small));
|
|
}
|
|
.ic-raw-extra-small {
|
|
@include icSize(var(--ic-extra-small));
|
|
} |