From e851de9d88f5bc07f49d151147b6032dd1506f06 Mon Sep 17 00:00:00 2001 From: Kalle <38327916+Sendouc@users.noreply.github.com> Date: Sat, 27 Jun 2026 10:26:30 +0300 Subject: [PATCH] Fix bracket deadline contrast issue --- .../components/Bracket/Match.tsx | 14 ++++++-------- .../components/Bracket/bracket.module.css | 8 ++++++++ 2 files changed, 14 insertions(+), 8 deletions(-) diff --git a/app/features/tournament-bracket/components/Bracket/Match.tsx b/app/features/tournament-bracket/components/Bracket/Match.tsx index bbd4c2473..b56f2affd 100644 --- a/app/features/tournament-bracket/components/Bracket/Match.tsx +++ b/app/features/tournament-bracket/components/Bracket/Match.tsx @@ -473,16 +473,14 @@ function MatchTimerInner({ const displayText = elapsedMinutes >= 60 ? "1h+" : `${elapsedMinutes}m`; - const statusColor = - status === "error" - ? "var(--color-error)" - : status === "warning" - ? "var(--color-warning)" - : "var(--color-text)"; - return (