Kyoo/front/static/roboto/sass/roboto-mixin.scss
2021-11-21 20:57:22 +01:00

14 lines
427 B
SCSS

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