remove scrollbar and match gaps/margins with live view

This commit is contained in:
Josh Hawkins 2024-03-03 19:32:21 -06:00
parent 2172ac43ff
commit deb43e126a

View File

@ -433,7 +433,7 @@ function DetectionReview({
<> <>
<div <div
ref={contentRef} ref={contentRef}
className="flex flex-1 flex-wrap content-start gap-2 overflow-y-auto no-scrollbar" className="flex flex-1 flex-wrap content-start gap-2 md:gap-4 overflow-y-auto no-scrollbar"
> >
{filter?.before == undefined && ( {filter?.before == undefined && (
<NewReviewData <NewReviewData
@ -608,7 +608,7 @@ function MotionReview({
<> <>
<div <div
ref={contentRef} ref={contentRef}
className={`size-full m-2 grid sm:grid-cols-2 xl:grid-cols-3 3xl:grid-cols-4 gap-2 overflow-auto`} className="size-full m-2 grid sm:grid-cols-2 xl:grid-cols-3 3xl:grid-cols-4 gap-2 md:gap-4 overflow-auto no-scrollbar"
> >
{reviewCameras.map((camera) => { {reviewCameras.map((camera) => {
let grow; let grow;