mirror of
https://github.com/siyuan-note/siyuan.git
synced 2026-01-24 09:16:09 +01:00
19 lines
329 B
SCSS
19 lines
329 B
SCSS
::-webkit-scrollbar {
|
|
width: 10px;
|
|
height: 10px;
|
|
}
|
|
|
|
::-webkit-scrollbar-corner {
|
|
background-color: transparent;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
box-sizing: content-box;
|
|
border: 4px solid transparent;
|
|
border-radius: 5px;
|
|
box-shadow: inset 0 0 5px 5px var(--b3-scroll-color);
|
|
|
|
&:hover {
|
|
border-width: 1px;
|
|
}
|
|
}
|