From c1d9438d8063efd00634af616885cd9a4088a949 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=98=BFCai?= Date: Fri, 11 Oct 2024 19:38:46 +0800 Subject: [PATCH] =?UTF-8?q?fix(vscode-plugin):=20vscode=20dark=20mode=20an?= =?UTF-8?q?d=20it's=20default=20theme=EF=BC=8Cblack=20scrollbar=20appears?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- vscodePlugin/web-resources/index.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/vscodePlugin/web-resources/index.css b/vscodePlugin/web-resources/index.css index 5c1804843..9b8f7d9e7 100644 --- a/vscodePlugin/web-resources/index.css +++ b/vscodePlugin/web-resources/index.css @@ -4,4 +4,10 @@ body { padding: 0; height: 100vh !important; overflow: hidden; +} + +@supports selector(::-webkit-scrollbar) { + html { + scrollbar-color: unset; + } } \ No newline at end of file