From 645df33943acc957877323ce5a7041258bf6bb52 Mon Sep 17 00:00:00 2001 From: Nicolas Mowen Date: Thu, 4 Apr 2024 14:42:03 -0600 Subject: [PATCH] Mobile color fixes --- web/src/components/icons/LiveIcons.tsx | 4 ++-- web/src/components/overlay/MobileCameraDrawer.tsx | 2 +- web/src/components/overlay/MobileReviewSettingsDrawer.tsx | 8 ++++---- web/src/views/live/LiveDashboardView.tsx | 4 ++-- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/web/src/components/icons/LiveIcons.tsx b/web/src/components/icons/LiveIcons.tsx index dc491b612..fbac271ef 100644 --- a/web/src/components/icons/LiveIcons.tsx +++ b/web/src/components/icons/LiveIcons.tsx @@ -32,10 +32,10 @@ export function LiveListIcon({ layout }: LiveIconProps) { return (
); diff --git a/web/src/components/overlay/MobileCameraDrawer.tsx b/web/src/components/overlay/MobileCameraDrawer.tsx index 158a7f4c5..e11a49eb3 100644 --- a/web/src/components/overlay/MobileCameraDrawer.tsx +++ b/web/src/components/overlay/MobileCameraDrawer.tsx @@ -24,7 +24,7 @@ export default function MobileCameraDrawer({ diff --git a/web/src/components/overlay/MobileReviewSettingsDrawer.tsx b/web/src/components/overlay/MobileReviewSettingsDrawer.tsx index 0a3319918..26c6d9bbc 100644 --- a/web/src/components/overlay/MobileReviewSettingsDrawer.tsx +++ b/web/src/components/overlay/MobileReviewSettingsDrawer.tsx @@ -137,7 +137,7 @@ export default function MobileReviewSettingsDrawer({ className="w-full flex justify-center items-center gap-2" onClick={() => setDrawerMode("export")} > - + Export )} @@ -146,7 +146,7 @@ export default function MobileReviewSettingsDrawer({ className="w-full flex justify-center items-center gap-2" onClick={() => setDrawerMode("calendar")} > - + Calendar )} @@ -155,7 +155,7 @@ export default function MobileReviewSettingsDrawer({ className="w-full flex justify-center items-center gap-2" onClick={() => setDrawerMode("filter")} > - + Filter )} @@ -282,7 +282,7 @@ export default function MobileReviewSettingsDrawer({ variant="secondary" onClick={() => setDrawerMode("select")} > - + diff --git a/web/src/views/live/LiveDashboardView.tsx b/web/src/views/live/LiveDashboardView.tsx index 65e06d185..c9f775da7 100644 --- a/web/src/views/live/LiveDashboardView.tsx +++ b/web/src/views/live/LiveDashboardView.tsx @@ -139,7 +139,7 @@ export default function LiveDashboardView({ className={`p-1 ${ layout == "grid" ? "bg-blue-900 focus:bg-blue-900 bg-opacity-60 focus:bg-opacity-60" - : "bg-muted" + : "bg-secondary" }`} size="xs" onClick={() => setLayout("grid")} @@ -150,7 +150,7 @@ export default function LiveDashboardView({ className={`p-1 ${ layout == "list" ? "bg-blue-900 focus:bg-blue-900 bg-opacity-60 focus:bg-opacity-60" - : "bg-muted" + : "bg-secondary" }`} size="xs" onClick={() => setLayout("list")}