From 44e3cdca8966a76366bbbeddb13099caf2354ab4 Mon Sep 17 00:00:00 2001 From: Tom Camp Date: Fri, 6 Oct 2023 11:58:44 +0100 Subject: [PATCH 1/2] Allow scrollable HubSpot iframe This ensures that longer HubSpot forms still work, and don't hide away the confirm button. --- app/style.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/style.css b/app/style.css index fc778e1..ab20b50 100644 --- a/app/style.css +++ b/app/style.css @@ -32,6 +32,8 @@ h1 { #signup-form { max-width: 500px; + height: 80%; + overflow: scroll; margin: 0px auto; padding: 0px 10px; border-radius: 20px; From 286d2039794a2531192f9be9eba1427a0dffc653 Mon Sep 17 00:00:00 2001 From: Tom Camp Date: Fri, 6 Oct 2023 12:03:39 +0100 Subject: [PATCH 2/2] Update HubSpot frame to height of 70% --- app/style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/style.css b/app/style.css index ab20b50..fbed206 100644 --- a/app/style.css +++ b/app/style.css @@ -32,7 +32,7 @@ h1 { #signup-form { max-width: 500px; - height: 80%; + height: 70%; overflow: scroll; margin: 0px auto; padding: 0px 10px;