From 1fd9e1df8ef1a7d4f1b84d3b1d2de72aec299bdc Mon Sep 17 00:00:00 2001 From: chanx <1243304602@qq.com> Date: Wed, 10 Jun 2026 19:39:00 +0800 Subject: [PATCH] Fix: add thin scrollbar styling for x-spreadsheet component (#15912) ### What problem does this PR solve? Fix: add thin scrollbar styling for x-spreadsheet component ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue) --- web/src/global.less | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/web/src/global.less b/web/src/global.less index 9ad41dfcbb..9630079a23 100644 --- a/web/src/global.less +++ b/web/src/global.less @@ -56,3 +56,8 @@ body, .Highlight__part { background: rgb(var(--accent-primary) / 0.1) !important; } + +.x-spreadsheet-scrollbar { + scrollbar-width: thin; + scrollbar-color: initial; +}