Skip to content

Commit

Permalink
feat: スクロールバーデザイン修正
Browse files Browse the repository at this point in the history
  • Loading branch information
k-tada committed Nov 21, 2024
1 parent 906c132 commit b8b07d0
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions packages/styles/global.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,22 @@ body {
font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN",
"Hiragino Sans", Meiryo, sans-serif;
}

*::-webkit-scrollbar {
width: 8px;
height: 8px;
}

*::-webkit-scrollbar-thumb {
background-color: #d3d8d7; /* gray400 */
border-radius: 4px;
}

*::-webkit-scrollbar-track {
background-color: #eef0ef; /* gray300 */
border-radius: 4px;
}

*::-webkit-scrollbar-button {
display: none;
}

0 comments on commit b8b07d0

Please sign in to comment.