@brizy/ui
Version:
React elements in Brizy style
22 lines (18 loc) • 326 B
text/less
// Body scrollbars
/* width */
body::-webkit-scrollbar {
width: 6px;
}
/* Track */
body::-webkit-scrollbar-track {
background: transparent;
}
/* Handle */
body::-webkit-scrollbar-thumb {
background: #d8d8d8;
border-radius: 5px;
}
/* Handle on hover */
body::-webkit-scrollbar-thumb:hover {
background: #d8d8d8;
}