From cb4cfc53999d50f36370a76fb0a2c0434e462290 Mon Sep 17 00:00:00 2001 From: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com> Date: Mon, 10 Jun 2024 18:05:29 -0500 Subject: [PATCH] red dot and outline --- web/src/components/player/LivePlayer.tsx | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/web/src/components/player/LivePlayer.tsx b/web/src/components/player/LivePlayer.tsx index afd969a0a..ae2940c36 100644 --- a/web/src/components/player/LivePlayer.tsx +++ b/web/src/components/player/LivePlayer.tsx @@ -188,7 +188,8 @@ export default function LivePlayer({ data-camera={cameraConfig.name} className={cn( "relative flex w-full cursor-pointer justify-center outline", - activeTracking + activeTracking && + ((showStillWithoutActivity && !liveReady) || liveReady) ? "outline-3 rounded-lg shadow-severity_alert outline-severity_alert md:rounded-2xl" : "outline-0 outline-background", "transition-all duration-500", @@ -266,9 +267,12 @@ export default function LivePlayer({