From dfa2c405c5d29c2977a39e569e97970b730f5fb8 Mon Sep 17 00:00:00 2001 From: SunCheng Date: Wed, 11 Feb 2026 14:47:53 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BC=98=E5=8C=96=E5=BA=95=E9=83=A8?= =?UTF-8?q?=E5=AF=BC=E8=88=AA=E6=A0=8F=E6=A0=B7=E5=BC=8F=EF=BC=8C=E8=B0=83?= =?UTF-8?q?=E6=95=B4=E9=AB=98=E5=BA=A6=E5=92=8C=E7=9B=92=E6=A8=A1=E5=9E=8B?= =?UTF-8?q?=E8=AE=BE=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Web/src/App.vue | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Web/src/App.vue b/Web/src/App.vue index a2f87f5..e0e5901 100644 --- a/Web/src/App.vue +++ b/Web/src/App.vue @@ -403,9 +403,8 @@ onMounted(() => { /* 重置所有 padding,然后只添加安全区域 */ padding: 0 !important; padding-bottom: env(safe-area-inset-bottom, 0px) !important; - height: auto !important; - min-height: 50px !important; - box-sizing: content-box !important; + height: calc(50px + env(safe-area-inset-bottom, 0px)) !important; + box-sizing: border-box !important; background: var(--bg-primary) !important; border-top: 1px solid var(--bg-tertiary); }