diff --git a/src/app/level/guide/GrowthLevel.tsx b/src/app/level/guide/GrowthLevel.tsx index 8f9b13b5..da80d58c 100644 --- a/src/app/level/guide/GrowthLevel.tsx +++ b/src/app/level/guide/GrowthLevel.tsx @@ -45,11 +45,8 @@ const containerCss = css({ overflowY: 'auto', position: 'relative', - '&::-webkit-scrollbar': { - width: '0px', - }, - '&::-webkit-scrollbar-track': { - width: '0px', + _scrollbar: { + display: 'none', }, }); diff --git a/src/components/Motion/StaggerWrapper.tsx b/src/components/Motion/StaggerWrapper.tsx index 95877c12..65816a2b 100644 --- a/src/components/Motion/StaggerWrapper.tsx +++ b/src/components/Motion/StaggerWrapper.tsx @@ -60,10 +60,7 @@ const wrapperCss = css({ flexDirection: 'column', width: '100%', - '&::-webkit-scrollbar': { - width: '0px', - }, - '&::-webkit-scrollbar-track': { - width: '0px', + _scrollbar: { + display: 'none', }, });