fix(layout): scrollbar design in code note

This commit is contained in:
Elian Doran 2025-12-09 16:31:34 +02:00
parent cae892a971
commit a2cff42981
No known key found for this signature in database
2 changed files with 6 additions and 1 deletions

View File

@ -1367,6 +1367,10 @@ body:not(.mobile) #launcher-pane.horizontal .dropdown-submenu > .dropdown-menu {
background-color: var(--scrollbar-background-color);
}
::-webkit-scrollbar-button {
display: none;
}
::-webkit-scrollbar-corner {
background-color: inherit;
}

View File

@ -6,4 +6,5 @@
.note-split.type-code:not(.mime-text-x-sqlite) > .scrolling-container {
background-color: var(--code-background-color);
--scrollbar-background-color: var(--main-background-color);
}