From f80f9c165153cd905bb21a61560cc5d25dbee15f Mon Sep 17 00:00:00 2001 From: xingyy <64720302+Concur-max@users.noreply.github.com> Date: Thu, 23 Jan 2025 14:10:15 +0800 Subject: [PATCH] =?UTF-8?q?feat(styles):=20=E5=88=9D=E5=A7=8B=E5=8C=96?= =?UTF-8?q?=E9=BB=98=E8=AE=A4=E4=B8=BB=E9=A2=98=E6=A0=B7=E5=BC=8F=E5=B9=B6?= =?UTF-8?q?=E6=94=AF=E6=8C=81=E6=9A=97=E9=BB=91=E6=A8=A1=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 新增 default-theme.css 文件,定义基础样式和暗黑模式样式 -移除 index.css 文件中的重复样式 - 在 nuxt.config.js 中引入 default-theme.css - 优化了颜色变量和布局样式 --- app/app.vue | 1 - app/static/styles/default-theme.css | 21 +++++++++++++++++++++ app/static/styles/global.css | 0 app/static/styles/index.css | 3 --- app/static/styles/vars.css | 0 nuxt.config.js | 2 +- 6 files changed, 22 insertions(+), 5 deletions(-) create mode 100644 app/static/styles/default-theme.css create mode 100644 app/static/styles/global.css delete mode 100644 app/static/styles/index.css create mode 100644 app/static/styles/vars.css diff --git a/app/app.vue b/app/app.vue index 26884a2..8bf81d9 100644 --- a/app/app.vue +++ b/app/app.vue @@ -52,7 +52,6 @@ provide('slideDirection', slideDirection)