From a2cee6bbb42a1caba88e3dc9d55f3f4340ced2c0 Mon Sep 17 00:00:00 2001 From: David Langley Date: Wed, 9 Oct 2024 17:34:42 +0100 Subject: [PATCH] Fix vertical overflow on the mobile register screen (#137) * Fix vertical overflow on the mobile register screen * Change to border-box to include padding in height so the register button can be scrolled fully in to view. --- res/css/structures/auth/_MobileRegistration.pcss | 3 +++ 1 file changed, 3 insertions(+) diff --git a/res/css/structures/auth/_MobileRegistration.pcss b/res/css/structures/auth/_MobileRegistration.pcss index d50ff8dc1f..e2ba1cba28 100644 --- a/res/css/structures/auth/_MobileRegistration.pcss +++ b/res/css/structures/auth/_MobileRegistration.pcss @@ -7,4 +7,7 @@ Please see LICENSE files in the repository root for full details. .mx_MobileRegister_body { padding: 32px; + height: 100vh; + overflow-y: auto; + box-sizing: border-box; }