Commit 26ce873f by Calcium-Ion Committed by GitHub

Merge pull request #3474 from wans10/main

fix(dashboard): 修复消耗分布图表悬浮时滚动条闪烁
parents e099117c b2dd4acc
...@@ -31,6 +31,13 @@ body { ...@@ -31,6 +31,13 @@ body {
background-color: var(--semi-color-bg-0); background-color: var(--semi-color-bg-0);
} }
/* 桌面端禁止 body 纵向滚动 - 防止 VChart tooltip 触发页面滚动条 */
@media (min-width: 768px) {
body {
overflow-y: hidden;
}
}
.app-layout { .app-layout {
height: 100vh; height: 100vh;
height: 100dvh; height: 100dvh;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment