mirror of
https://github.com/movie-web/movie-web.git
synced 2024-12-27 00:56:07 +00:00
Fix thumbnail going under next episode button
This commit is contained in:
parent
88446299b6
commit
ad81b23c95
|
@ -27,7 +27,7 @@ export function BottomControls(props: {
|
|||
<div
|
||||
onMouseOver={() => setHoveringAnyControls(true)}
|
||||
onMouseOut={() => setHoveringAnyControls(false)}
|
||||
className="pointer-events-auto pl-[calc(2rem+env(safe-area-inset-left))] pr-[calc(2rem+env(safe-area-inset-right))] pb-3 mb-[env(safe-area-inset-bottom)] absolute bottom-0 w-full"
|
||||
className="pointer-events-auto z-10 pl-[calc(2rem+env(safe-area-inset-left))] pr-[calc(2rem+env(safe-area-inset-right))] pb-3 mb-[env(safe-area-inset-bottom)] absolute bottom-0 w-full"
|
||||
>
|
||||
<Transition animation="slide-up" show={props.show}>
|
||||
{props.children}
|
||||
|
|
|
@ -130,6 +130,7 @@ export function PlayerPart(props: PlayerPartProps) {
|
|||
</Player.BottomControls>
|
||||
|
||||
<Player.VolumeChangedPopout />
|
||||
|
||||
<Player.NextEpisodeButton
|
||||
controlsShowing={showTargets}
|
||||
onChange={props.onMetaChange}
|
||||
|
|
Loading…
Reference in a new issue