Right scrollbar (of the note) too small after clicking

You could try playing around with this to see if it’s closer to what you are looking for:

.theme-dark  {
    --scrollbar-active-thumb-bg: #c81c8088; 
    --scrollbar-thumb-bg: transparent;
}

body.theme-dark ::-webkit-scrollbar {
    width: 10px;
}

body.theme-dark ::-webkit-scrollbar:hover {
    background-color: var(--scrollbar-bg);
    -webkit-border-radius: var(--radius-l);
    width: 1.1em;
}

body.theme-dark ::-webkit-scrollbar-thumb {
    background-color: var(--scrollbar-active-thumb-bg);
    -webkit-border-radius: var(--radius-l);
}

CleanShot 2024-05-11 at 09.38.49

2 Likes