Browse Source

Optimize left menu scroll bar
优化左侧菜单滚动条

star7th 6 years ago
parent
commit
bb74ab87e7
1 changed files with 8 additions and 4 deletions
  1. 8 4
      web_src/src/components/item/show/show_regular_item/LeftMenu.vue

+ 8 - 4
web_src/src/components/item/show/show_regular_item/LeftMenu.vue

@@ -235,12 +235,16 @@
 
 }
 
-/*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/
+/*隐藏滚动条*/
 .hide-scrollbar ::-webkit-scrollbar
 {
-    width: 1px;
-    height: 1px;
-    background-color: #fafafa;
+   display: none;
+}
+/*隐藏滚动条*/
+.hide-scrollbar
+{ 
+    -ms-overflow-style: none;
+    scrollbar-width: none;
 }
 
 .header-left-btn{