Set max-height on note-editor Tags/Related and allow to scroll (#3692)

This commit is contained in:
Abe Jellinek 2024-02-27 04:50:56 -08:00 committed by GitHub
parent 6327e55599
commit 59fbdf6048
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -4,4 +4,14 @@ links-box {
padding-inline: 8px;
border-top: 1px solid var(--fill-quinary);
tags-box, related-box {
> collapsible-section > .body {
max-height: 25vh;
overflow-y: auto;
scrollbar-width: thin;
scrollbar-color: var(--color-scrollbar) var(--color-scrollbar-background);
padding-bottom: 1px; // Leave room for the editable-text focus ring
}
}
}