Files
landscape-template/src/Components/Navbar/styles.module.css
2022-03-16 15:43:10 +02:00

21 lines
342 B
CSS

/* width */
.navMobile ::-webkit-scrollbar {
width: 4px;
}
/* Track */
.navMobile ::-webkit-scrollbar-track {
background: transparent;
}
/* Handle */
.navMobile ::-webkit-scrollbar-thumb {
border-radius: 10px;
background-color: #aaa;
}
/* Handle on hover */
.navMobile ::-webkit-scrollbar-thumb:hover {
background-color: #999;
}