mirror of
https://github.com/the1812/Bilibili-Evolved.git
synced 2025-11-04 21:22:45 +08:00
24 lines
451 B
SCSS
24 lines
451 B
SCSS
html {
|
|
::-webkit-scrollbar {
|
|
width: 5px !important;
|
|
height: 5px !important;
|
|
}
|
|
::-webkit-scrollbar-corner,
|
|
::-webkit-scrollbar-track {
|
|
background: transparent !important;
|
|
}
|
|
::-webkit-resizer,
|
|
::-webkit-scrollbar-thumb {
|
|
background: #aaa;
|
|
border-radius: 3px;
|
|
}
|
|
::-webkit-scrollbar-thumb:hover {
|
|
background: #888;
|
|
}
|
|
&,
|
|
* {
|
|
scrollbar-color: #aaa transparent;
|
|
scrollbar-width: thin !important;
|
|
}
|
|
}
|