Use 2 columns for large mobile devices

This commit is contained in:
Nicolas Mowen 2024-03-28 09:35:41 -06:00
parent 7c2c82435c
commit 718f830723

View File

@ -482,7 +482,9 @@ function Timeline({
onHandlebarDraggingChange={(scrubbing) => setScrubbing(scrubbing)}
/>
) : (
<div className="h-full flex flex-col gap-4 overflow-auto p-4 bg-secondary">
<div
className={`h-full grid grid-cols-1 gap-4 overflow-auto p-4 bg-secondary ${isDesktop ? "" : "sm:grid-cols-2"}`}
>
{mainCameraReviewItems.map((review) => {
if (review.severity == "significant_motion") {
return;