瀏覽代碼

fix(dashboard): 修复消耗分布图表悬浮时滚动条闪烁

wans10 2 月之前
父節點
當前提交
b2dd4acc9f
共有 1 個文件被更改,包括 7 次插入0 次删除
  1. 7 0
      web/src/index.css

+ 7 - 0
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;