Skip to content

Commit

Permalink
style: add styles for the scrollbar
Browse files Browse the repository at this point in the history
Added styling for the side scroller of the site in assets/css/styles.css
file
  • Loading branch information
rasan3-1416 committed Oct 10, 2023
1 parent ce4afe2 commit 3635802
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion assets/css/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -550,7 +550,18 @@ img {
text-align: center;
}
/*=============== SCROLL BAR ===============*/

::-webkit-scrollbar {
width: 0.6rem;
border-radius: 0.5rem;
background-color: hsl(23, 4%, 15%);
}
::-webkit-scrollbar-thumb {
border-radius: 0.5rem;
background-color: hsl(23, 4%, 30%);
}
::-webkit-scrollbar-thumb:hover {
background-color: hsl(23, 4%, 40%);
}

/*=============== SCROLL UP ===============*/

Expand Down

0 comments on commit 3635802

Please sign in to comment.