Files
impersonator/style/scroll.css

19 lines
481 B
CSS
Raw Normal View History

2021-08-22 03:44:44 +05:30
.scroll::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
border-radius: 10px;
background-color: rgba(0, 0, 0, 0);
}
.scroll::-webkit-scrollbar {
width: 12px;
background-color: rgba(0, 0, 0, 0);
}
.scroll::-webkit-scrollbar-thumb {
border-radius: 10px;
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
background-color: #2a8ed6;
}