mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-05 05:09:03 +00:00
29 lines
729 B
CSS
29 lines
729 B
CSS
/*
|
|
* notion-enhancer
|
|
* (c) 2020 dragonwocky <thedragonring.bod@gmail.com> (https://dragonwocky.me/)
|
|
* (c) 2020 TarasokUA
|
|
* under the MIT license
|
|
*/
|
|
|
|
.smooth-scrollbars .notion-scroller {
|
|
cursor: auto;
|
|
}
|
|
.smooth-scrollbars ::-webkit-scrollbar {
|
|
width: 8px; /* vertical */
|
|
height: 8px; /* horizontal */
|
|
}
|
|
.smooth-scrollbars ::-webkit-scrollbar-corner {
|
|
background-color: transparent; /* overlap */
|
|
}
|
|
.smooth-scrollbars ::-webkit-scrollbar-thumb {
|
|
border-radius: 5px;
|
|
}
|
|
|
|
.smooth-scrollbars ::-webkit-scrollbar-thumb {
|
|
background-color: var(--theme--scrollbar);
|
|
border: 1px solid var(--theme--scrollbar-border);
|
|
}
|
|
.smooth-scrollbars ::-webkit-scrollbar-thumb:hover {
|
|
background: var(--theme--scrollbar_hover);
|
|
}
|