From 5d72c524171829bfb3ff6caa826e3b6238a9cbee Mon Sep 17 00:00:00 2001 From: Claude Date: Mon, 23 Feb 2026 01:56:48 +0000 Subject: [PATCH] Fix missing text-foreground on time bank unit select The seconds/minutes/hours select in the time bank dialog had bg-background but was missing text-foreground, causing text color to fall back to browser default in dark mode. https://claude.ai/code/session_01FZz7kndEqWqFScyq4R6Wxn --- 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 4a6ad79..936013d 100644 --- a/app/routes/leagues/$leagueId.draft.$seasonId.tsx +++ b/app/routes/leagues/$leagueId.draft.$seasonId.tsx @@ -1570,7 +1570,7 @@ export default function DraftRoom() { onChange={(e) => setTimeBankUnit(e.target.value as "seconds" | "minutes" | "hours") } - className="px-3 py-2 border rounded-md bg-background text-sm" + className="px-3 py-2 border rounded-md bg-background text-foreground text-sm" >