mirror of
https://github.com/aljazceru/landscape-template.git
synced 2026-01-09 17:34:24 +01:00
21 lines
342 B
CSS
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;
|
|
}
|