Skip to content

Commit

Permalink
Merge pull request #634 from shivanisorte/scrollbar
Browse files Browse the repository at this point in the history
Custom Scrollbar for Improved User Experience
  • Loading branch information
birm authored Mar 31, 2023
2 parents f679e26 + 321223f commit daea60b
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions apps/landing/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -4759,4 +4759,24 @@
.fas {
/* color: rgba(255,255,255,.5);; */
color: inherit;
}

/* Custom Scrollbar */

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

::-webkit-scrollbar-track {
box-shadow: inset 0 0 1px grey;
border-radius: 0px;
}

::-webkit-scrollbar-thumb {
background: #9a2ca0;
border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
background: grey;
}

0 comments on commit daea60b

Please sign in to comment.