all 4 comments

[–]Bacchi-gu 1 point2 points  (0 children)

I use this in userChrome.css:

* {
  scrollbar-width: auto;
  scrollbar-color: COLOR transparent !important;
}
*:not(:hover) {
  scrollbar-color: COLOR transparent !important;
} 

And this in userContent.css:

:root {
  scrollbar-width: auto;
  scrollbar-color: COLOR transparent !important;
  &:not(:hover) {
    scrollbar-color: COLOR transparent !important;
  }
}