redesigned camera settings page, left the minimum height at 100%, open to change

This commit is contained in:
2025-09-26 13:38:47 +01:00
parent 1edeba9b13
commit 6773b82349
7 changed files with 28 additions and 31 deletions

View File

@@ -10,7 +10,6 @@ const FrontCameraOverviewCard = () => {
const navigate = useNavigate();
const handlers = useSwipeable({
onSwipedRight: () => navigate("/front-camera-settings"),
trackMouse: true,
});
@@ -20,7 +19,7 @@ const FrontCameraOverviewCard = () => {
"relative min-h-[40vh] md:min-h-[60vh] max-h-[80vh] lg:w-[70%] overflow-y-hidden"
)}
>
<div className="lg:overflow-hidden" {...handlers}>
<div className="w-full" {...handlers}>
<SightingOverview />
</div>
</Card>