Skip to content

Commit

Permalink
Merge pull request #137 from zalabhavy/scrollbar
Browse files Browse the repository at this point in the history
Scrollbar style added
  • Loading branch information
VaibhavArora314 authored Jun 8, 2024
2 parents 777ff39 + 3a7cfa8 commit d93e102
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

23 changes: 23 additions & 0 deletions frontend/src/App.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
::-webkit-scrollbar-track
{
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.1);
background-color: #F5F5F5;
border-radius: 10px;
}

::-webkit-scrollbar
{
width: 10px;
background-color: #F5F5F5;
}
::-webkit-scrollbar-thumb
{
border-radius: 10px;
background-color: #FFF;
background-image: -webkit-gradient(linear,
40% 0%,
75% 84%,
from(#333333),
to(#000000),
color-stop(.6,#666666));
}

0 comments on commit d93e102

Please sign in to comment.