Skip to content

Commit

Permalink
Added a custom scrollbar
Browse files Browse the repository at this point in the history
  • Loading branch information
Madhuri36 committed May 23, 2024
1 parent b418f7a commit d9c8d51
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions frontend/src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,22 @@
body {
height: 100%;
}

/* Style the scrollbar */
::-webkit-scrollbar {
width: 10px;
}

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

::-webkit-scrollbar-thumb {
background: linear-gradient(#B3DAD9,#03565A);
border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
background: #03686b;
}

0 comments on commit d9c8d51

Please sign in to comment.