Skip to content

Commit

Permalink
Merge pull request #167 from Madhuri36/scrollbar
Browse files Browse the repository at this point in the history
Fix #146: Added a custom scrollbar
  • Loading branch information
imohit1o1 authored May 25, 2024
2 parents 2c50c2d + d9c8d51 commit 1b7dd95
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;
}

1 comment on commit 1b7dd95

@vercel
Copy link

@vercel vercel bot commented on 1b7dd95 May 25, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.