25 lines
599 B
SCSS
25 lines
599 B
SCSS
// @font-face {
|
|
// font-family: 'PoetsenOne';
|
|
// src: url('./static/asserts/fonts/PoetsenOne-Regular.ttf') format('truetype');
|
|
// }
|
|
|
|
// 小程序页面根元素样式
|
|
page {
|
|
height: 100%;
|
|
min-height: 100vh;
|
|
background-color: #FAFAFA;
|
|
}
|
|
|
|
#app {
|
|
height: 100%;
|
|
min-height: 100vh;
|
|
width: 100%;
|
|
background-color: #FAFAFA;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "Quicksand";
|
|
// 注意:此路径对应 @/config/api.ts 中的 OSS_BASE
|
|
src: url("https://bimwe.oss-cn-shanghai.aliyuncs.com/front/ball/other/57dc951f-f10e-45b7-9157-0b1e468187fd.ttf") format("truetype");
|
|
font-display: swap;
|
|
} |