23 lines
539 B
Handlebars
23 lines
539 B
Handlebars
@use "sass:map";
|
|
|
|
@mixin icon {
|
|
/* !important to prevent issues with browser extensions that change fonts */
|
|
/* stylelint-disable-next-line font-family-no-missing-generic-family-keyword */
|
|
font-family: "{{ name }}" !important;
|
|
speak: none;
|
|
font-style: normal;
|
|
font-weight: normal;
|
|
font-variant: normal;
|
|
text-transform: none;
|
|
line-height: 1;
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
|
|
${{ name }}-map: (
|
|
{{# each codepoints }}
|
|
"{{ @key }}": "\\{{ codepoint this }}",
|
|
{{/ each }}
|
|
);
|