From 73d43469644ffe0d5b4318935c1bf0c106c88826 Mon Sep 17 00:00:00 2001 From: Corwin Date: Tue, 9 Apr 2024 02:32:36 +0100 Subject: [PATCH] nicer height calculation --- website/agb/src/app/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/agb/src/app/page.tsx b/website/agb/src/app/page.tsx index 9f92bec0..44b7812f 100644 --- a/website/agb/src/app/page.tsx +++ b/website/agb/src/app/page.tsx @@ -28,7 +28,7 @@ const HelpLinks = styled.div` `; const GameDisplay = styled.div` - height: min(calc(100vw / 1.5), 40vh); + height: min(calc(100vw / 1.5), min(90vh, 480px)); max-width: 100vw; margin-top: 20px; overflow: hidden;