Skip to content

Commit

Permalink
Update scroll bar
Browse files Browse the repository at this point in the history
  • Loading branch information
jcs090218 committed Jan 19, 2024
1 parent bd9c27d commit 938b390
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,23 @@ code {
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
monospace;
}

/* Scrollbar */

::-webkit-scrollbar {
border: 2px solid rgb(255, 255, 255);
width: 10px;
}

::-webkit-scrollbar-track {
background: #333333;
}

::-webkit-scrollbar-thumb {
background: #848484;
border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
background: #CECECE;
}

0 comments on commit 938b390

Please sign in to comment.