Fix height on mobile

This commit is contained in:
Nicolas Mowen 2024-02-07 14:53:02 -07:00
parent 374a78c23d
commit 184196eab3

View File

@ -76,7 +76,7 @@ function Live() {
{cameras.map((camera) => {
let grow;
if (camera.detect.width / camera.detect.height > 2) {
grow = "md:col-span-2";
grow = "h-26 md:h-auto md:col-span-2";
} else if (camera.detect.width / camera.detect.height < 1) {
grow = "md:row-span-2";
} else {