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.
43 lines
872 B
43 lines
872 B
// 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}, |
|
.#{$fa-css-prefix}-classic, |
|
.#{$fa-css-prefix}-sharp, |
|
.fas, |
|
.#{$fa-css-prefix}-solid, |
|
.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; |
|
line-height: 1; |
|
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'; |
|
} |
|
|
|
|
|
%fa-icon { |
|
@include fa-icon; |
|
}
|
|
|