Merge pull request #621 from movie-web/hide-gear

Get rid of gear on mobile view
This commit is contained in:
Jip Frijlink 2023-12-29 14:23:09 +01:00 committed by GitHub
commit 750bb60f62
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -121,7 +121,7 @@ export function PlayerPart(props: PlayerPartProps) {
<div className="flex justify-center space-x-3"> <div className="flex justify-center space-x-3">
{status === playerStatus.PLAYING ? <Player.Pip /> : null} {status === playerStatus.PLAYING ? <Player.Pip /> : null}
<Player.Episodes /> <Player.Episodes />
<Player.Settings /> {status === playerStatus.PLAYING ? <Player.Settings /> : null}
</div> </div>
<div> <div>
<Player.Fullscreen /> <Player.Fullscreen />