From 79ccb20135702e2e77cfc6eba4fb3a05ff826682 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B6=85=E7=BA=A7=E8=80=81=E7=99=BD=E5=85=94?= Date: Tue, 9 Sep 2025 10:00:10 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E6=A0=B7=E5=BC=8F):=20=E8=B0=83=E6=95=B4?= =?UTF-8?q?=E5=BE=AE=E4=BF=A1=E9=A1=B5=E9=9D=A2=E5=B8=83=E5=B1=80=E9=AB=98?= =?UTF-8?q?=E5=BA=A6=E4=BB=A5=E9=81=BF=E5=85=8D=E6=BA=A2=E5=87=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 将高度从100vh改为calc(100vh - 64px),防止内容被顶部导航栏遮挡 --- Cunkebao/src/pages/pc/ckbox/weChat/index.module.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cunkebao/src/pages/pc/ckbox/weChat/index.module.scss b/Cunkebao/src/pages/pc/ckbox/weChat/index.module.scss index 9b37437e..c3e1ee83 100644 --- a/Cunkebao/src/pages/pc/ckbox/weChat/index.module.scss +++ b/Cunkebao/src/pages/pc/ckbox/weChat/index.module.scss @@ -1,5 +1,5 @@ .ckboxLayout { - height: 100vh; + height: calc(100vh - 64px); background: #fff; display: flex; flex-direction: column;