_font-face.scss 471 B

123456789101112131415161718192021222324
  1. @mixin font-face(
  2. $font-family,
  3. $file-path,
  4. $weight: normal,
  5. $style: normal,
  6. $asset-pipeline: $asset-pipeline,
  7. $file-formats: eot woff2 woff ttf svg) {
  8. $font-url-prefix: font-url-prefixer($asset-pipeline);
  9. @font-face {
  10. font-family: $font-family;
  11. font-style: $style;
  12. font-weight: $weight;
  13. src: font-source-declaration(
  14. $font-family,
  15. $file-path,
  16. $asset-pipeline,
  17. $file-formats,
  18. $font-url-prefix
  19. );
  20. }
  21. }