19 lines
325 B
CSS
19 lines
325 B
CSS
.scroll::-webkit-scrollbar {
|
|
height: 8px;
|
|
width: 8px;
|
|
}
|
|
|
|
.scroll::-webkit-scrollbar-track {
|
|
border-radius: 8px;
|
|
background-color: #ebebeb;
|
|
}
|
|
|
|
.scroll::-webkit-scrollbar-thumb {
|
|
border-radius: 8px;
|
|
background-color: #b4b4b4;
|
|
}
|
|
|
|
.scroll::-webkit-scrollbar-thumb:hover {
|
|
background-color: #808080;
|
|
}
|