mirror of
https://github.com/siyuan-note/siyuan.git
synced 2026-02-27 09:24:06 +01:00
19 lines
349 B
SCSS
19 lines
349 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: var(--b3-border-radius);
|
|
box-shadow: inset 0 0 5px 5px var(--b3-scroll-color);
|
|
|
|
&:hover {
|
|
border-width: 1px;
|
|
}
|
|
}
|