From c87b048af8bd3d03626b0b1024cda9d870ac6b28 Mon Sep 17 00:00:00 2001 From: Ashley Harrison Date: Thu, 6 Jan 2022 10:34:13 +0000 Subject: [PATCH] Login: Prevent page overflowing on mobile (#43739) --- public/app/core/components/Login/LoginLayout.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/app/core/components/Login/LoginLayout.tsx b/public/app/core/components/Login/LoginLayout.tsx index fd7261d1c10..c2e5f44821d 100644 --- a/public/app/core/components/Login/LoginLayout.tsx +++ b/public/app/core/components/Login/LoginLayout.tsx @@ -53,7 +53,7 @@ export const getLoginStyles = (theme: GrafanaTheme2) => { return { container: css({ - minHeight: '100vh', + minHeight: '100%', backgroundPosition: 'center', backgroundRepeat: 'no-repeat', backgroundColor: bgColor,