From b2dd4acc9fddef7b30109ed3733630b804c4d5e1 Mon Sep 17 00:00:00 2001 From: wans10 Date: Sat, 28 Mar 2026 12:14:22 +0800 Subject: [PATCH] =?UTF-8?q?fix(dashboard):=20=E4=BF=AE=E5=A4=8D=E6=B6=88?= =?UTF-8?q?=E8=80=97=E5=88=86=E5=B8=83=E5=9B=BE=E8=A1=A8=E6=82=AC=E6=B5=AE?= =?UTF-8?q?=E6=97=B6=E6=BB=9A=E5=8A=A8=E6=9D=A1=E9=97=AA=E7=83=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- web/src/index.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/web/src/index.css b/web/src/index.css index 116ff741..ee57bda5 100644 --- a/web/src/index.css +++ b/web/src/index.css @@ -31,6 +31,13 @@ body { background-color: var(--semi-color-bg-0); } +/* 桌面端禁止 body 纵向滚动 - 防止 VChart tooltip 触发页面滚动条 */ +@media (min-width: 768px) { + body { + overflow-y: hidden; + } +} + .app-layout { height: 100vh; height: 100dvh;