From 27718d3a7634eaddeff7ea7ffe329bf99981629c Mon Sep 17 00:00:00 2001 From: Alexander Date: Mon, 22 Jan 2024 20:19:45 -0500 Subject: [PATCH] add blue theme and fix score text in display --- ui/src/components/display-card.tsx | 4 +- ui/src/components/navbar.tsx | 2 +- ui/tailwind.config.ts | 115 ++++++++++++++++------------- 3 files changed, 67 insertions(+), 54 deletions(-) diff --git a/ui/src/components/display-card.tsx b/ui/src/components/display-card.tsx index 7ae04de..c808e7c 100644 --- a/ui/src/components/display-card.tsx +++ b/ui/src/components/display-card.tsx @@ -314,14 +314,14 @@ export const DemoCard: Component = (props: IDisplayCard) => {

{props.game.home_team.name}

-

+

{props.game.home_team.score.points}

-

{props.game.away_team.name}

-

+

{props.game.away_team.score.points}

diff --git a/ui/src/components/navbar.tsx b/ui/src/components/navbar.tsx index 5eaa498..1abd4be 100644 --- a/ui/src/components/navbar.tsx +++ b/ui/src/components/navbar.tsx @@ -29,7 +29,7 @@ export const Navbar: Component = (props: Props) => {