From e1b466fe604bafd253d2f8c82b1348bb8d622743 Mon Sep 17 00:00:00 2001 From: Bastian de Byl Date: Sun, 2 Aug 2026 10:40:03 -0400 Subject: [PATCH] fix: correct iOS Safari viewport height on sign request Signed-off-by: Bastian de Byl --- src/ExternalApp.vue | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/ExternalApp.vue b/src/ExternalApp.vue index de8ec47dfb..6540989d32 100644 --- a/src/ExternalApp.vue +++ b/src/ExternalApp.vue @@ -32,6 +32,7 @@ html body #content { margin: 0; width: 100vw; height: 100vh; + height: 100dvh; border-radius: 0; } @@ -44,6 +45,7 @@ html body #content { width: 100vw !important; max-width: 100vw !important; height: 100vh; + height: 100dvh; z-index: 2000; } }