Skip to content

Commit

Permalink
scroll bar added (#76)
Browse files Browse the repository at this point in the history
Scroll bar suiting the website added.
Files modified: Home.css
  • Loading branch information
PSS2134 authored May 15, 2024
2 parents 5d70b5d + bc1fabf commit bfd5bff
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions src/Style/Home.css
Original file line number Diff line number Diff line change
Expand Up @@ -175,3 +175,25 @@
margin-inline: 25vw;
}
} /*# sourceMappingURL=Home.css.map */

/* Scroll bar css */
/* Webkit (Safari/Chrome) */
::-webkit-scrollbar {
width: 10px;
}
::-webkit-scrollbar-track {
background: black;
}
::-webkit-scrollbar-thumb {
background:rgb(148, 22, 233);
}
/* Firefox */
::-moz-scrollbar {
width: 10px;
}
::-moz-scrollbar-track {
background: black;
}
::-moz-scrollbar-thumb {
background:rgb(148, 22, 233);
}

0 comments on commit bfd5bff

Please sign in to comment.