Skip to content

Commit

Permalink
Merge pull request #495 from depromeet/chore/editCss
Browse files Browse the repository at this point in the history
🎨 스크롤 바 보이는 부분 없애기
  • Loading branch information
woobottle authored Feb 9, 2024
2 parents df9a41c + cdb0a23 commit c95da28
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
9 changes: 2 additions & 7 deletions src/app/level/guide/GrowthLevel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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',
},
});

Expand Down
7 changes: 7 additions & 0 deletions src/components/Motion/StaggerWrapper.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,4 +59,11 @@ const wrapperCss = css({
display: 'flex',
flexDirection: 'column',
width: '100%',

'&::-webkit-scrollbar': {
width: '0px',
},
'&::-webkit-scrollbar-track': {
width: '0px',
},
});

0 comments on commit c95da28

Please sign in to comment.