You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
792 B
39 lines
792 B
2 years ago
|
// base icon class definition
|
||
|
// -------------------------
|
||
|
|
||
|
.@{fa-css-prefix} {
|
||
|
font-family: ~"var(--@{fa-css-prefix}-style-family, '@{fa-style-family}')";
|
||
|
font-weight: ~'var(--@{fa-css-prefix}-style, @{fa-style})';
|
||
|
}
|
||
|
|
||
|
.@{fa-css-prefix},
|
||
|
.fas,
|
||
|
.@{fa-css-prefix}-solid,
|
||
|
.fass,
|
||
|
.@{fa-css-prefix}-sharp,
|
||
|
.far,
|
||
|
.@{fa-css-prefix}-regular,
|
||
|
.fab,
|
||
|
.@{fa-css-prefix}-brands {
|
||
|
-moz-osx-font-smoothing: grayscale;
|
||
|
-webkit-font-smoothing: antialiased;
|
||
|
display: ~'var(--@{fa-css-prefix}-display, @{fa-display})';
|
||
|
font-style: normal;
|
||
|
font-variant: normal;
|
||
|
text-rendering: auto;
|
||
|
}
|
||
|
|
||
|
.fas,
|
||
|
.@{fa-css-prefix}-classic,
|
||
|
.@{fa-css-prefix}-solid,
|
||
|
.far,
|
||
|
.@{fa-css-prefix}-regular {
|
||
|
font-family: 'Font Awesome 6 Free';
|
||
|
}
|
||
|
|
||
|
.fab,
|
||
|
.@{fa-css-prefix}-brands {
|
||
|
font-family: 'Font Awesome 6 Brands';
|
||
|
}
|
||
|
|