feat(popup_editor): limit max height & reduce padding

This commit is contained in:
Elian Doran 2025-07-10 16:12:38 +03:00
parent 91f94106fb
commit aa2ab0da31
No known key found for this signature in database

View File

@ -13,7 +13,9 @@ const TPL = /*html*/`\
}
.modal.popup-editor-dialog .modal-body {
padding: 0.5em 1.5em;
padding: 0 1.5em;
max-height: 75vh;
overflow: scroll;
}
.modal.popup-editor-dialog .note-detail-editable-text {