From 4d2a567c46e5527bf8f03a5b4579ec3daed911ae Mon Sep 17 00:00:00 2001 From: kolaente Date: Wed, 18 Sep 2024 19:00:47 +0200 Subject: [PATCH] fix(modal): make scrolling on iOS Safari work This fixes a bug where the full-screen modal would not work on iOS Safari (and only there). It's unclear why this is happening due to a single overflow: visible statement though. Resolves https://github.com/go-vikunja/vikunja/issues/325 (cherry picked from commit 16d73869752cea8ffcc73ee6be3021994cd6b6c1) --- frontend/src/components/misc/Modal.vue | 1 - 1 file changed, 1 deletion(-) diff --git a/frontend/src/components/misc/Modal.vue b/frontend/src/components/misc/Modal.vue index 3dbcd49e7..ef24e2ca2 100644 --- a/frontend/src/components/misc/Modal.vue +++ b/frontend/src/components/misc/Modal.vue @@ -219,7 +219,6 @@ $modal-width: 1024px; .modal-container { height: auto; - overflow: visible; min-height: 100vh; }