瀏覽代碼

menuCard样式优化,禁止纵向滚动。

DESKTOP-6LTVLN7\Liumouren 2 年之前
父節點
當前提交
f888e734c2
共有 1 個文件被更改,包括 4 次插入2 次删除
  1. 4 2
      src/components/layout/MenuCard.vue

+ 4 - 2
src/components/layout/MenuCard.vue

@@ -1385,8 +1385,10 @@ export default {
   );
   background-image: linear-gradient(to top, @topTitleMinLeft, @topTitleBgLeft);
   box-sizing: border-box;
-  overflow-x: hidden;
-  overflow-y: auto;
+  // 禁止纵向滑轮滚动
+  overflow: hidden;
+  // overflow-x: hidden;
+  // overflow-y: auto;
   scrollbar-width: none; /* Firefox */
   -ms-overflow-style: none; /* IE 10+ */
   &::-webkit-scrollbar {