Skip to content

Commit

Permalink
Fix aspect
Browse files Browse the repository at this point in the history
  • Loading branch information
NickM-27 committed Mar 17, 2024
1 parent 7bb7049 commit 39ca997
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/src/views/events/RecordingView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ export function RecordingView({
const grow = useMemo(() => {
if (mainCameraAspect == "wide") {
return "w-full aspect-wide";
} else if (mainCameraAspect == "tall") {
} else if (isDesktop && mainCameraAspect == "tall") {
return "h-full aspect-tall";
} else {
return "w-full aspect-video";
Expand Down

0 comments on commit 39ca997

Please sign in to comment.