Merge pull request #3474 from wans10/main

fix(dashboard): 修复消耗分布图表悬浮时滚动条闪烁
This commit is contained in:
Calcium-Ion 2026-03-31 18:57:16 +08:00 committed by GitHub
commit 26ce873f8b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

7
web/src/index.css vendored
View File

@ -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;