52 lines
1.3 KiB
SCSS
52 lines
1.3 KiB
SCSS
/*!
|
|
* Font Awesome Pro 7.0.1 by @fontawesome - https://fontawesome.com
|
|
* License - https://fontawesome.com/license (Commercial License)
|
|
* Copyright 2025 Fonticons, Inc.
|
|
*/
|
|
@use "sass:string";
|
|
@use 'variables' as v;
|
|
@use 'mixins' as m;
|
|
|
|
:root, :host {
|
|
--#{v.$css-prefix}-family-sharp: 'Font Awesome 7 Sharp';
|
|
--#{v.$css-prefix}-font-sharp-thin: normal 100 1em/1 var(--#{v.$css-prefix}-family-sharp);
|
|
|
|
/* deprecated: this older custom property will be removed next major release */
|
|
--#{v.$css-prefix}-style-family-sharp: var(--#{v.$css-prefix}-family-sharp);
|
|
}
|
|
|
|
|
|
@font-face {
|
|
font-family: 'Font Awesome 7 Sharp';
|
|
font-style: normal;
|
|
font-weight: 100;
|
|
font-display: v.$font-display;
|
|
src: url('#{v.$font-path}/fa-sharp-thin-100.woff2');
|
|
}
|
|
|
|
|
|
.fast {
|
|
--#{v.$css-prefix}-family: var(--#{v.$css-prefix}-family-sharp);
|
|
--#{v.$css-prefix}-style: 100;
|
|
}
|
|
|
|
.#{v.$css-prefix}-sharp {
|
|
--#{v.$css-prefix}-family: var(--#{v.$css-prefix}-family-sharp);
|
|
}
|
|
|
|
.#{v.$css-prefix}-thin {
|
|
--#{v.$css-prefix}-style: 100;
|
|
}
|
|
|
|
// convenience mixin for declaring pseudo-elements by CSS variable,
|
|
// including all style-specific font properties and ::before elements.
|
|
@mixin icon($var) {
|
|
@include m.fa-icon(Font Awesome 7 Sharp);
|
|
@extend .#{v.$css-prefix}-thin;
|
|
@extend .#{v.$css-prefix}-sharp;
|
|
|
|
&::before {
|
|
content: string.unquote("\"#{ $var }\"");
|
|
}
|
|
}
|