From cdb0a23d2ef02931b056fa24e515e1545edfb5f7 Mon Sep 17 00:00:00 2001 From: wooBottle Date: Fri, 9 Feb 2024 15:36:02 +0900 Subject: [PATCH] =?UTF-8?q?:art:=20=EC=8A=A4=ED=81=AC=EB=A1=A4=20=EB=B0=94?= =?UTF-8?q?=20=EB=B3=B4=EC=9D=B4=EB=8A=94=20=EB=B6=80=EB=B6=84=20=EC=97=86?= =?UTF-8?q?=EC=95=A0=EA=B8=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/app/level/guide/GrowthLevel.tsx | 9 ++------- src/components/Motion/StaggerWrapper.tsx | 7 +++++++ 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/src/app/level/guide/GrowthLevel.tsx b/src/app/level/guide/GrowthLevel.tsx index 59e57142..8f9b13b5 100644 --- a/src/app/level/guide/GrowthLevel.tsx +++ b/src/app/level/guide/GrowthLevel.tsx @@ -46,15 +46,10 @@ const containerCss = css({ position: 'relative', '&::-webkit-scrollbar': { - width: '2px', - }, - '&::-webkit-scrollbar-thumb': { - width: '2px', - borderRadius: '5px', - backgroundColor: 'bg.surface3', + width: '0px', }, '&::-webkit-scrollbar-track': { - width: '2px', + width: '0px', }, }); diff --git a/src/components/Motion/StaggerWrapper.tsx b/src/components/Motion/StaggerWrapper.tsx index 15b3d486..95877c12 100644 --- a/src/components/Motion/StaggerWrapper.tsx +++ b/src/components/Motion/StaggerWrapper.tsx @@ -59,4 +59,11 @@ const wrapperCss = css({ display: 'flex', flexDirection: 'column', width: '100%', + + '&::-webkit-scrollbar': { + width: '0px', + }, + '&::-webkit-scrollbar-track': { + width: '0px', + }, });