We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 176a6ca commit 73f8cc7Copy full SHA for 73f8cc7
packages/react/src/routes/watch.tsx
@@ -66,7 +66,8 @@ const VideoContent = ({
66
"flex-row-reverse": chatPos === "left",
67
})}
68
>
69
- <div className="grow">
+ {/* min-w-0 and shrink are necessary here for the player to shrink on Chrome (specifically Chrome) */}
70
+ <div className="min-w-0 shrink grow">
71
<PlayerWrapper id={currentVideo?.id} url={url} />
72
</div>
73
{theaterMode && <TheaterModeChat currentVideo={currentVideo} />}
0 commit comments