From bff08261038c1d82391c60e7323ca4d6976ad053 Mon Sep 17 00:00:00 2001 From: Max Date: Fri, 14 Feb 2025 13:29:32 +0100 Subject: [PATCH] enh(ui): move dialogs down a bit so status remains visible Signed-off-by: Max --- src/components/ViewerComponent.vue | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/components/ViewerComponent.vue b/src/components/ViewerComponent.vue index 16dd94371ce..baf37753beb 100644 --- a/src/components/ViewerComponent.vue +++ b/src/components/ViewerComponent.vue @@ -189,6 +189,12 @@ export default { } } +body .toastify.dialogs { + // Move the dialogs below the toolbar / status + // Normal margin is 45px, add one clickable area. + margin-top: 79px; +} + .viewer[data-handler='text'] .modal-wrapper .modal-container { bottom: 0; }