Fix aspect

This commit is contained in:
Nicolas Mowen 2024-03-17 16:58:13 -06:00
parent 7bb7049a3b
commit 39ca997c4c

View File

@ -192,7 +192,7 @@ export function RecordingView({
const grow = useMemo(() => { const grow = useMemo(() => {
if (mainCameraAspect == "wide") { if (mainCameraAspect == "wide") {
return "w-full aspect-wide"; return "w-full aspect-wide";
} else if (mainCameraAspect == "tall") { } else if (isDesktop && mainCameraAspect == "tall") {
return "h-full aspect-tall"; return "h-full aspect-tall";
} else { } else {
return "w-full aspect-video"; return "w-full aspect-video";