Skip to content

Commit

Permalink
✨Feat: 스크롤바 커스텀 (#91)
Browse files Browse the repository at this point in the history
  • Loading branch information
easyhyun00 authored May 21, 2024
1 parent 2348505 commit 53c0816
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions src/styles/normalize.scss
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,17 @@ body,
body {
margin: 0;
}

::-webkit-scrollbar {
width: 8px;
background-color: black;
}

::-webkit-scrollbar-thumb {
background: linear-gradient($color-brand-pink, $color-brand-orange);
border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
background: linear-gradient($color-brand-orange, $color-brand-pink);
}

0 comments on commit 53c0816

Please sign in to comment.