mirror of
https://github.com/movie-web/movie-web.git
synced 2024-12-26 07:11:50 +01:00
Merge pull request #696 from movie-web/fix-hover
Fix player UI not always vanishing (or so we hope :D)
This commit is contained in:
commit
bc5e2d6f30
@ -39,7 +39,7 @@ function ThumbnailDisplay(props: { at: number; show: boolean }) {
|
|||||||
|
|
||||||
if (!props.show || !currentThumbnail) return null;
|
if (!props.show || !currentThumbnail) return null;
|
||||||
return (
|
return (
|
||||||
<div className="flex flex-col items-center -translate-x-1/2">
|
<div className="flex flex-col items-center -translate-x-1/2 pointer-events-none">
|
||||||
<div className="w-screen flex justify-center">
|
<div className="w-screen flex justify-center">
|
||||||
<div ref={ref}>
|
<div ref={ref}>
|
||||||
<div
|
<div
|
||||||
|
Loading…
Reference in New Issue
Block a user