This commit is contained in:
s-lnk
2026-04-30 21:58:39 +03:00
commit aabe5fe2b7
2923 changed files with 366740 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
@mixin icon-variant($bg, $color) {
color: $color;
background-color: $bg;
}
@mixin icon-outline-variant($border-width, $color) {
color: saturate(darken($color, 14%), 5);
border: $border-width solid transparentize(lighten($color, 10%), .5);
}
@mixin icon-font($content, $font-size) {
content: $content;
font-family: $icon-font-family;
font-size: $font-size;
}