Skip to content

Commit

Permalink
Merge pull request #433 from MastanSayyad/main
Browse files Browse the repository at this point in the history
Re-styled the "Vertical Scrollbar" Matching to "Website Design" Theme
  • Loading branch information
PranavBarthwal authored Jun 28, 2024
2 parents 8b366e9 + cad4f06 commit e76e7a2
Showing 1 changed file with 14 additions and 4 deletions.
18 changes: 14 additions & 4 deletions src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,24 @@ body {
display: none;
}
::-webkit-scrollbar {
width: 15px;
width: 7px;
}

::-webkit-scrollbar:hover {
width: 9px;

}

::-webkit-scrollbar-track {
background: #d1e5ff;
background: #15013c;
}

::-webkit-scrollbar-thumb {
background: linear-gradient(#674a97, #8400ff);
border-radius: 10px;
background: linear-gradient(rgb(203, 131, 255), rgb(106, 0, 255));
border-radius: 7px;
}

::-webkit-scrollbar-thumb:hover {
background: linear-gradient(rgb(191, 102, 255), rgb(137, 58, 249));
border-radius: 7px;
}

0 comments on commit e76e7a2

Please sign in to comment.