and if you want to change the colours, try this

/* For styling the entire Joplin app (except the rendered Markdown, which is defined in `userstyle.css`) */

::-webkit-scrollbar {
  width: 15px;
}

::-webkit-scrollbar-track {
  border-width: 5;
  background: dimgrey; /* color of the tracking area */
}
::-webkit-scrollbar-track:hover {
  border-width: 5;
  background: dimgrey; /* color of the tracking area */
}

::-webkit-scrollbar-thumb {
    background-color: orange; /* color of the scrollbar (no hover) */
    border: 3px solid grey;
}
::-webkit-scrollbar-thumb:hover {
    background-color: darkorange; /* color of the scrollbar (hover) */
    border: 3px solid grey;
}

1 Like