Fix play button z-index + add basic player theme

This commit is contained in:
Gabe Kangas
2022-05-26 21:44:54 -07:00
parent 8ed01ed4da
commit da0a2f5f5d
4 changed files with 17 additions and 6 deletions

View File

@@ -52,7 +52,7 @@ export function VideoJS(props: Props) {
return (
<div data-vjs-player>
{/* eslint-disable-next-line jsx-a11y/media-has-caption */}
<video ref={videoRef} className={`video-js vjs-big-play-centered ${s.player}`} />
<video ref={videoRef} className={`video-js vjs-big-play-centered ${s.player} vjs-owncast`} />
</div>
);
}