mac css scroll bar show code example
Example: css scrollbar like mac
.scrollbar::-webkit-scrollbar {
background-color: #fff;
width: 16px
}
.scrollbar::-webkit-scrollbar-track {
background-color: #fff
}
.scrollbar::-webkit-scrollbar-track:hover {
background-color: #f4f4f4
}
.scrollbar::-webkit-scrollbar-thumb {
background-color: #babac0;
border-radius: 16px;
border: 5px solid #fff
}
.scrollbar::-webkit-scrollbar-thumb:hover {
background-color: #a0a0a5;
border: 4px solid #f4f4f4
}
.scrollbar::-webkit-scrollbar-button {
display: none
}
body {
background-color: #babac0
}
.scrollbar {
height: 75vh;
width: 25vw;
min-width: 150px;
background: #fff;
overflow-y: scroll
}
.overflow {
min-height: 100vh
}