We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b753915 commit b169432Copy full SHA for b169432
app/routes/p.$videoId.tsx
@@ -170,10 +170,12 @@ function VideoPlayer({ video }: VideoPlayerProps) {
170
171
return (
172
<MediaPlayer
173
+ className="xl:h-[calc(100vh-10rem)] lg:h-[calc(100vh-20rem)] relative w-full"
174
title={video.videoData.title}
175
// biome-ignore lint/suspicious/noExplicitAny: types are fine
176
src={video.playbackData.videoSources as any}
177
poster={video.playbackData.largeThumbnailUrl ?? undefined}
178
+ playsInline={false}
179
>
180
<MediaProvider />
181
<PlyrLayout
0 commit comments