Skip to content

Commit

Permalink
modified scrollbar
Browse files Browse the repository at this point in the history
  • Loading branch information
TimTJoe committed Aug 16, 2024
1 parent e2d4ec2 commit a29039b
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions public/css/reset.css
Original file line number Diff line number Diff line change
Expand Up @@ -83,4 +83,25 @@ select {
-webkit-animation: none !important;
animation: none !important;
scroll-behavior: auto !important;
}

/* width */
::-webkit-scrollbar {
width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
background: var(--smoke);
border-radius: 17px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: var(--shadow);
}

0 comments on commit a29039b

Please sign in to comment.