18 lines
699 B
SCSS
18 lines
699 B
SCSS
@import "variables";
|
|
|
|
@font-face {
|
|
font-family: "Font Awesome 5";
|
|
src: url("#{$fa-font-path}/fontawesome-brands-900.eot?v=#{$fa-version}");
|
|
src: url("#{$fa-font-path}/fontawesome-brands-900.eot?#iefix&v=#{$fa-version}") format("embedded-opentype"),
|
|
url("#{$fa-font-path}/fontawesome-brands-900.woff2?v=#{$fa-version}") format("woff2"),
|
|
url("#{$fa-font-path}/fontawesome-brands-900.woff?v=#{$fa-version}") format("woff"),
|
|
url("#{$fa-font-path}/fontawesome-brands-900.ttf?v=#{$fa-version}") format("truetype"),
|
|
url("#{$fa-font-path}/fontawesome-brands-900.svg?v=#{$fa-version}#fontawesomeregular") format("svg");
|
|
font-weight: 900;
|
|
font-style: normal;
|
|
}
|
|
|
|
.fab {
|
|
font-weight: 900;
|
|
}
|