📅  最后修改于: 2022-03-11 14:47:32.644000             🧑  作者: Mango
/* SCSS */
@mixin font-face($name, $file) {
@font-face {
font-family: "#{$name}";
src: url("../fonts/#{$file}.eot");
src: url("../fonts/#{$file}.eot?#iefix") format("embedded-opentype"),
url("../fonts/#{$file}.woff") format("woff"),
url("../fonts/#{$file}.ttf") format("truetype"),
url("../fonts/#{$file}.svg?#webfont") format("svg");
}
}