refactor(css): 重构样式文件并优化主题样式

- 新增 theme.scss 文件,定义主题颜色- 新增 public.scss 文件,统一公共样式
- 修改 main.scss 文件,引入新的样式文件
-优化容器背景色渐变效果- 调整导航栏样式,增加面包屑导航
-统一问题类型样式,优化选择题样式
This commit is contained in:
陈昱达
2025-03-14 13:42:32 +08:00
parent b46104fa10
commit 10981d439f
15 changed files with 240 additions and 468 deletions

View File

@@ -3,9 +3,10 @@ import 'amfe-flexible';
import { createApp } from 'vue';
import { createPinia } from 'pinia';
import App from './App.vue';
import 'vant/lib/index.css';
import router from './router';
// 2. 引入组件样式
import 'vant/lib/index.css';
import appBridge from '@/assets/js/appBridge';
router.beforeEach((to, from, next) => {
appBridge.setTitle(to.meta.title as string);