mirror of
https://github.com/FortAwesome/Font-Awesome.git
synced 2025-01-15 09:40:27 +08:00
19 lines
334 B
SCSS
19 lines
334 B
SCSS
// Base Class Definition
|
|
// -------------------------
|
|
|
|
%fa {
|
|
display: inline-block;
|
|
font-family: FontAwesome;
|
|
font-style: normal;
|
|
font-weight: normal;
|
|
line-height: 1;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
|
|
@if $fa-show-classes == true {
|
|
.#{$fa-css-prefix} {
|
|
@extend %fa;
|
|
}
|
|
}
|