Skip to content

Commit

Permalink
scroll bar added
Browse files Browse the repository at this point in the history
  • Loading branch information
VinayLodhi1712 committed Oct 10, 2024
1 parent 723c087 commit d4d93cf
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions hiring-portal/src/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,24 @@
transform: rotate(360deg);
}
}

::-webkit-scrollbar {
width: 7px;
}

/* Track */
::-webkit-scrollbar-track {
background: #f0f0f0; /* Slightly off-white to add subtle contrast with pure white background */
}

/* Handle */
::-webkit-scrollbar-thumb {
background: #c9c7c7; /* Light gray for a modern, unobtrusive look */
border-radius: 12px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: #b0b0b0; /* Darker gray on hover for a visual cue */
border-radius: 12px;
}

0 comments on commit d4d93cf

Please sign in to comment.