Skip to content

Commit

Permalink
Merge branch 'main' into test
Browse files Browse the repository at this point in the history
  • Loading branch information
Ojas-Arora committed Jun 30, 2024
2 parents ea9ceab + e8dddca commit c6a73c2
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/components/Footer/Footer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ function Footer() {
<i className="fab fa-github"></i>
</a>
<a href="https://x.com/pranavbarthwal_" className="text-light me-4">
<i className="fab fa-twitter"></i>
<i className="fab fa-x-twitter"></i>
</a>
<a href="https://linktr.ee/PranavBarthwal" className="text-light me-4">
<i className="fab fa-instagram"></i>
Expand Down
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 c6a73c2

Please sign in to comment.