refactor(login): 使用自定义输入框组件替换原生输入框 refactor(index): 重构网格布局代码,使用动态渲染方式 style: 更新全局字体样式,移除默认字体设置 chore: 添加多个字体文件和图标资源 docs: 更新应用名称和版本号
18 lines
822 B
CSS
18 lines
822 B
CSS
@font-face {
|
|
font-family: '东方大楷';
|
|
src: url('@/static/font/东方大楷/AlimamaDongFangDaKai-Regular.ttf') format('truetype'),
|
|
url('@/static/font/东方大楷/AlimamaDongFangDaKai-Regular.woff') format('woff'),
|
|
url('@/static/font/东方大楷/AlimamaDongFangDaKai-Regular.woff2') format('woff2');
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
}
|
|
|
|
/* 设置全局默认字体 */
|
|
body, page {
|
|
font-family: '东方大楷', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Helvetica Neue', Helvetica, Arial, sans-serif;
|
|
}
|
|
|
|
/* 为所有元素设置默认字体 */
|
|
* {
|
|
font-family: '东方大楷', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Helvetica Neue', Helvetica, Arial, sans-serif;
|
|
} |