fix(font): 去掉全局字体,姑且写了个 global-font

This commit is contained in:
BTMuli
2023-03-13 16:39:39 +08:00
parent ecf8f30c8a
commit e85e830689
8 changed files with 32 additions and 16 deletions

View File

@@ -3,7 +3,12 @@
font-family: "Genshin";
src: url("./Genshin.ttf") format("truetype");
}
* {
/* 全局字体样式 */
.global-font {
font-family: "Genshin", sans-serif;
}
/* 常见卡片样式 */
.common-card {
margin-bottom: 10px;
font-family: "Genshin", sans-serif;
}