From 1371b0355671f7ed34f870a0bf1aaea1a114a50a Mon Sep 17 00:00:00 2001 From: yutent Date: Mon, 16 May 2022 14:41:08 +0800 Subject: [PATCH] =?UTF-8?q?=E6=BB=9A=E5=8A=A8=E6=9D=A1=E7=9B=B4=E6=8E=A5?= =?UTF-8?q?=E9=9A=90=E8=97=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- package.json | 2 +- src/scroll/index.wc | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) 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; + } } }