15 lines
243 B
CSS
15 lines
243 B
CSS
::-webkit-scrollbar {
|
|
width: 12px;
|
|
height: 12px;
|
|
position: absolute;
|
|
right: 0px;
|
|
}
|
|
::-webkit-scrollbar-track {
|
|
background: #dddddd66;
|
|
border-radius: 6px;
|
|
}
|
|
::-webkit-scrollbar-thumb {
|
|
background: #999999;
|
|
border-radius: 6px;
|
|
}
|