_redaction.scss 412 B

123456789101112131415161718
  1. $location: '~@/assets/fonts/redaction';
  2. $font-name: 'Redaction';
  3. $font-slug: 'redaction';
  4. $font-styles: (
  5. (normal, 400),
  6. (italic, 400),
  7. (normal, 700),
  8. );
  9. @each $style, $weight in $font-styles {
  10. @font-face {
  11. font-family: $font-name;
  12. font-style: $style;
  13. font-display: swap;
  14. font-weight: $weight;
  15. src: url('#{$location}/#{$font-slug}-#{$weight}-#{$style}.woff2') format('woff2');
  16. }
  17. }