From aa2ab0da31ba11b6d6b24e791d650586cdf7ff0e Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Thu, 10 Jul 2025 16:12:38 +0300 Subject: [PATCH] feat(popup_editor): limit max height & reduce padding --- apps/client/src/widgets/dialogs/popup_editor.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/apps/client/src/widgets/dialogs/popup_editor.ts b/apps/client/src/widgets/dialogs/popup_editor.ts index 6615b0a78..91da5088a 100644 --- a/apps/client/src/widgets/dialogs/popup_editor.ts +++ b/apps/client/src/widgets/dialogs/popup_editor.ts @@ -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 {