Browse Source

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

Get rid of gear on mobile view
pull/623/head
Jip Frijlink 2 years ago committed by GitHub
parent
commit
750bb60f62
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/pages/parts/player/PlayerPart.tsx

2
src/pages/parts/player/PlayerPart.tsx

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

Loading…
Cancel
Save