- improved UI for sessions page

This commit is contained in:
2025-10-15 15:15:04 +01:00
parent c6ddd04303
commit 7cfebab6c1
9 changed files with 87 additions and 112 deletions

View File

@@ -18,18 +18,9 @@ const RearCameraOverviewCard = ({ className }: CardProps) => {
});
const { mostRecent } = useSightingFeedContext();
return (
<Card
className={clsx(
"relative min-h-[40vh] md:min-h-[60vh] h-auto",
className
)}
>
<Card className={clsx("relative min-h-[40vh] md:min-h-[60vh] h-auto", className)}>
<div className="flex flex-col space-y-3 h-full" {...handlers}>
<CardHeader
title="Rear Overview"
icon={faCamera}
sighting={mostRecent}
/>
<CardHeader title="Rear Overview" icon={faCamera} sighting={mostRecent} />
<SightingOverview />
</div>
</Card>