feat: 重构样式文件并添加新功能

- 将 main.css 重命名为 main.scss,并移动到 css 目录
- 添加 mixin.scss、vant.scss 和 variables.scss 新样式文件
- 更新样式导入路径
- 新增多个 CSS混入和变量,提升样式可维护性
- 调整部分样式规则,优化页面布局和视觉效果
This commit is contained in:
陈昱达
2025-03-03 15:20:00 +08:00
parent f6f5d82c0d
commit 2195eab28f
21 changed files with 6652 additions and 262 deletions

1
components.d.ts vendored
View File

@@ -13,6 +13,7 @@ declare module 'vue' {
ElMain: typeof import('element-plus/es')['ElMain']
RouterLink: typeof import('vue-router')['RouterLink']
RouterView: typeof import('vue-router')['RouterView']
Van: typeof import('vant/es')['default']
VanButton: typeof import('vant/es')['Button']
VanCell: typeof import('vant/es')['Cell']
VanCellGroup: typeof import('vant/es')['CellGroup']