css scroll Navbar Menu

This commit is contained in:
Stephen
2024-08-14 19:56:06 +07:00
parent 9169cb492d
commit 4770be54f4
2 changed files with 41 additions and 5 deletions

View File

@@ -28,3 +28,39 @@
body {
font-family: "Roboto", sans-serif;
}
.scroll-container {
scroll-padding: 50px 0 0 50px;
}
::-webkit-scrollbar {
width: 7px;
}
/* this targets the default scrollbar (compulsory) */
::-webkit-scrollbar-track {
background-color: #E3F2FD;
}
/* the new scrollbar will have a flat appearance with the set background color */
::-webkit-scrollbar-thumb {
background-color: #2196F3;
;
}
/* this will style the thumb, ignoring the track */
::-webkit-scrollbar-button {
background-color: #E3F2FD;
;
}
/* optionally, you can style the top and the bottom buttons (left and right for horizontal bars) */
::-webkit-scrollbar-corner {
background-color: black;
}