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', + }, });