From 3543be34711016f91ba74af41e47bfb2f6551d07 Mon Sep 17 00:00:00 2001 From: Claude Date: Mon, 23 Feb 2026 15:56:55 +0000 Subject: [PATCH] fix: use h-dvh instead of h-screen on mobile draft board Replace h-screen (100vh) with h-dvh (100dvh) on the root draft room container. On mobile browsers, 100vh equals the max viewport height when the address bar is hidden, causing the page to overflow when the address bar is visible. 100dvh (dynamic viewport height) correctly adjusts to the actual visible area at all times. https://claude.ai/code/session_01GecUeTHw4Mc2ErSYJ6WXae --- app/routes/leagues/$leagueId.draft.$seasonId.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/routes/leagues/$leagueId.draft.$seasonId.tsx b/app/routes/leagues/$leagueId.draft.$seasonId.tsx index bd2c2f3..b75b156 100644 --- a/app/routes/leagues/$leagueId.draft.$seasonId.tsx +++ b/app/routes/leagues/$leagueId.draft.$seasonId.tsx @@ -1092,7 +1092,7 @@ export default function DraftRoom() { : null; return ( -
+
{/* Draft Completion Banner */} {isDraftComplete && (