From e491856e28d31d36952e79a2d6e58f3a0b2041fa Mon Sep 17 00:00:00 2001 From: SunCheng Date: Wed, 11 Feb 2026 14:29:31 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E7=BB=9F=E4=B8=80=E4=B8=BB=E9=A2=98?= =?UTF-8?q?=E8=89=B2=E5=BD=A9=E7=B3=BB=E7=BB=9F=EF=BC=8C=E4=BC=98=E5=8C=96?= =?UTF-8?q?=E5=BA=95=E9=83=A8=E5=AF=BC=E8=88=AA=E6=A0=8F=E9=97=B4=E8=B7=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 新建 theme.css 定义 CSS 变量,统一亮色/暗色主题色彩 - 新建 layout.css 优化底部导航栏布局 - 在 App.vue 中添加 Vant UI 主题变量映射 - 修复底部导航栏与屏幕底部间距过大问题 - 添加安全区域(safe-area-inset)处理 --- Web/src/App.vue | 25 +++++++++++++++++++++++++ Web/src/main.js | 2 ++ Web/src/styles/layout.css | 29 +++++++++++++++++++++++++++++ Web/src/styles/theme.css | 37 +++++++++++++++++++++++++++++++++++++ 4 files changed, 93 insertions(+) create mode 100644 Web/src/styles/layout.css create mode 100644 Web/src/styles/theme.css diff --git a/Web/src/App.vue b/Web/src/App.vue index a777822..472ff34 100644 --- a/Web/src/App.vue +++ b/Web/src/App.vue @@ -1,6 +1,7 @@