mirror of
https://github.com/CharaChorder/DeviceManager.git
synced 2026-01-07 02:22:52 +00:00
32 lines
738 B
SCSS
32 lines
738 B
SCSS
@font-face {
|
|
font-family: "Material Symbols Rounded";
|
|
font-weight: 100 700;
|
|
font-style: normal;
|
|
src: url("$lib/assets/icons.min.woff2") format("woff2");
|
|
}
|
|
|
|
.icon {
|
|
user-select: none;
|
|
|
|
direction: ltr;
|
|
display: inline-block;
|
|
|
|
/* stylelint-disable-next-line */
|
|
font-family: "Material Symbols Rounded";
|
|
font-size: 24px;
|
|
font-feature-settings: "liga";
|
|
font-variation-settings: "FILL" var(--icon-fill, 0), "wght" var(--icon-weigth, 400),
|
|
"GRAD" var(--icon-grade, 0);
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
line-height: 1;
|
|
text-transform: none;
|
|
letter-spacing: normal;
|
|
word-wrap: normal;
|
|
white-space: nowrap;
|
|
|
|
transition: font-variation-settings 250ms ease;
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|