From 9f0d2af5e814361ecdb5a51191ae989b3575d29f Mon Sep 17 00:00:00 2001 From: aryanjsingh Date: Sat, 4 Apr 2026 06:41:09 +0530 Subject: [PATCH] fix: use 100vh for splash screen min-height --- src/app/components/splash-screen/SplashScreen.css.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/components/splash-screen/SplashScreen.css.ts b/src/app/components/splash-screen/SplashScreen.css.ts index bd3c300a7..bbf787b0b 100644 --- a/src/app/components/splash-screen/SplashScreen.css.ts +++ b/src/app/components/splash-screen/SplashScreen.css.ts @@ -2,7 +2,7 @@ import { style } from '@vanilla-extract/css'; import { color, config } from 'folds'; export const SplashScreen = style({ - minHeight: '100%', + minHeight: '100vh', backgroundColor: color.Background.Container, color: color.Background.OnContainer, });