Skip to content

Commit

Permalink
[#1] Style Setting
Browse files Browse the repository at this point in the history
- html태그의 스크롤 디자인 변경
  • Loading branch information
JoGeumJu committed Jan 27, 2023
1 parent ec0b30e commit 9650839
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions styles/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,32 @@
margin: 0;
}

html::-webkit-scrollbar {
width: 14px;
}
html::-webkit-scrollbar-thumb {
background-color: #17181d;
border-radius: 10px;
background-clip: padding-box;
border: 4px solid transparent;
}
html::-webkit-scrollbar-track {
background-color: transparent;
border-radius: 10px;
}
html::-webkit-scrollbar-button:start:decrement {
background-color: transparent;
height: 80px;
}
html::-webkit-scrollbar-button:end:increment {
background-color: transparent;
height: 192px;
}
html {
overflow: overlay;
scroll-behavior: smooth;
}

html,
body {
max-width: 100vw;
Expand Down

0 comments on commit 9650839

Please sign in to comment.