aboutsummaryrefslogtreecommitdiff
path: root/src_scss/fonts/_font.scss
blob: 3f4e7e75ab2061541a7560ecff6efec5e84c2273 (plain) (blame)
1
2
3
4
5
6
7
8
9
@mixin font($variant, $type, $weight, $style) {
    @font-face {
        font-family: '#{$variant}';
        src: url('../../fonts/#{$variant}/#{$variant}-#{$type}.woff2') format('truetype');
        font-weight: $weight;
        font-style: $style;
    }
}