_noto-sans.scss 522 B

1234567891011121314151617181920
  1. $location: '~@fontsource/noto-sans/files';
  2. $font-name: 'Noto Sans';
  3. $font-slug: 'noto-sans-latin';
  4. $font-styles: (
  5. (normal, 400),
  6. (italic, 400),
  7. (normal, 700),
  8. (italic, 700)
  9. );
  10. @each $style, $weight in $font-styles {
  11. @font-face {
  12. font-family: $font-name;
  13. font-style: $style;
  14. font-display: swap;
  15. font-weight: $weight;
  16. src: url('#{$location}/#{$font-slug}-#{$weight}-#{$style}.woff2') format('woff2'),
  17. url('#{$location}/#{$font-slug}-#{$weight}-#{$style}.woff') format('woff');
  18. }
  19. }