You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
404 B
SCSS
15 lines
404 B
SCSS
// src/assets/fonts.scss
|
|
@font-face {
|
|
font-family: "DingTalk JinBuTi"; // 自定义字体名称1
|
|
src: url("@/assets/fonts/DingTalk JinBuTi.ttf") format("truetype");
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "DouyinSansBold"; // 自定义字体名称2
|
|
src: url("@/assets/fonts/DouyinSansBold.otf") format("truetype");
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
}
|