overlay
Gitea/movie-explorer/pipeline/head There was a failure building this commit
Details
Gitea/movie-explorer/pipeline/head There was a failure building this commit
Details
This commit is contained in:
parent
a074c21cc2
commit
bd14b70a45
|
@ -45,7 +45,7 @@ export function MovieWall({ movies, setMovies, config, setChosenMovie, setSimila
|
|||
const movie = movies[i]
|
||||
const isHighlighted = movie.vote_average ? movie.vote_average > 6 : false
|
||||
posters.push(
|
||||
<Poster className="w-36 h-58 rounded-xl overflow-hidden flex justify-center" isHighlighted={isHighlighted} movie={movie} key={movie.id} index={i}
|
||||
<Poster className="w-36 h-58 rounded-xl overflow-hidden flex justify-center relative" isHighlighted={isHighlighted} movie={movie} key={movie.id} index={i}
|
||||
listSimilar={tmdb.getSimilar}
|
||||
config={config}
|
||||
setMovies={setMovies}
|
||||
|
@ -82,7 +82,7 @@ function Poster({ className, movie, config, listSimilar, setMovies, setChosenMov
|
|||
{isLoading ?
|
||||
<div className="m-auto text-center h-full w-full fixed">
|
||||
<div className="lds-spinner"><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div></div></div>
|
||||
: <div className="z-10 h-full w-full cursor-pointer" onClick={() => clickHandler()}>
|
||||
: <div className="z-10 h-full w-full absolute cursor-pointer" onClick={() => clickHandler()}>
|
||||
hello
|
||||
</div>
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue