From ff77a2125a31baecc46d2015490d78771610889c Mon Sep 17 00:00:00 2001 From: Kara Engelhardt Date: Mon, 20 Apr 2026 10:26:04 +0200 Subject: [PATCH] Limit widget frame inner height to 100dvh (Z#23231969) Fixes a bug where the submit buttons were obscured by the browsers elements on some ios devices --- src/pretix/static/pretixpresale/scss/widget.scss | 1 + 1 file changed, 1 insertion(+) diff --git a/src/pretix/static/pretixpresale/scss/widget.scss b/src/pretix/static/pretixpresale/scss/widget.scss index 9e44aff1f2..9060ea0469 100644 --- a/src/pretix/static/pretixpresale/scss/widget.scss +++ b/src/pretix/static/pretixpresale/scss/widget.scss @@ -966,6 +966,7 @@ $table-bg-accent: rgba(128, 128, 128, 0.05); width: 80vw; max-width: 1080px; height: 80vh; + max-height: 100dvh; } .pretix-widget-frame-inner iframe { width: 100% !important;