26 lines
No EOL
613 B
CSS
26 lines
No EOL
613 B
CSS
/* from reset */
|
|
::-webkit-scrollbar-track {
|
|
background: 0 0;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
background: var(--scrollbar);
|
|
border: 5px solid var(--background);
|
|
border-radius: 16px;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb:hover {
|
|
background: var(--scrollbar-hover);
|
|
}
|
|
|
|
/* ::-webkit-scrollbar:not(.highlighttable, .highlight table, .gist .highlight) {
|
|
background: var(--theme);
|
|
}
|
|
*/
|
|
/* reset */
|
|
::-webkit-scrollbar {
|
|
width: 19px;
|
|
height: 11px;
|
|
}
|
|
|
|
/* from PaperMod https://github.com/adityatelange/hugo-PaperMod/blob/c98a924842fc7ee0c14212c316c69ede3ad76ca3/assets/css/includes/scroll-bar.css */ |