Files
mixtape/zero.Web.UI/Sass/Core/_mixins.scss
T
2020-12-30 13:21:35 +01:00

14 lines
347 B
SCSS

@mixin font-face($font-family, $file-path, $weight: normal, $style: normal)
{
@font-face
{
font-family: $font-family;
font-weight: $weight;
font-style: $style;
src: url('#{$file-path}.woff2') format('woff2'),
url('#{$file-path}.woff') format('woff');
//url('#{$file-path}.ttf') format('truetype');
}
}