diff --git a/package.json b/package.json index cf8bfc0..2999118 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@bytedo/wcui", - "version": "1.0.5", + "version": "1.0.6", "type": "module", "description": "基于wc开发的一套UI库, 面向未来, 面向electron", "scripts": { diff --git a/src/scroll/index.wc b/src/scroll/index.wc index 80b3515..4b7929a 100644 --- a/src/scroll/index.wc +++ b/src/scroll/index.wc @@ -24,8 +24,13 @@ .wrapper { overflow: auto; + scrollbar-width: none; width: 100%; height: 100%; + + &::-webkit-scrollbar { + display: none; + } } }