Compare commits
2 Commits
d68eee9bec
...
1161467334
Author | SHA1 | Date |
---|---|---|
|
1161467334 | |
|
7c457c3fe8 |
|
@ -32,7 +32,7 @@ export function Sidebar({ movie, similarMoviesAvailable, watchProviders, config,
|
||||||
apectRatio: "2 / 3"
|
apectRatio: "2 / 3"
|
||||||
}} />
|
}} />
|
||||||
</a>
|
</a>
|
||||||
: <Popcorn height="100%" size="80%" />
|
: <Popcorn height="100%" size="60%" />
|
||||||
}
|
}
|
||||||
{similarMoviesAvailable ? "" : "No hay data suficiente para darte pelílculas relacionadas."}
|
{similarMoviesAvailable ? "" : "No hay data suficiente para darte pelílculas relacionadas."}
|
||||||
<div className="h-36 sm:h-72 w-8/12 sm:w-full overflow-y-scroll overflow-x-hidden sm:mt-4 p-2 sm:p-4 text-sm sm:text-base flex justify-center items-center border-2 border-slate-800 rounded-lg ">
|
<div className="h-36 sm:h-72 w-8/12 sm:w-full overflow-y-scroll overflow-x-hidden sm:mt-4 p-2 sm:p-4 text-sm sm:text-base flex justify-center items-center border-2 border-slate-800 rounded-lg ">
|
||||||
|
|
|
@ -64,7 +64,7 @@ interface ProviderIconsProps extends React.ComponentPropsWithRef<"div"> {
|
||||||
function ProviderIcons({ providerList, link }: ProviderIconsProps) {
|
function ProviderIcons({ providerList, link }: ProviderIconsProps) {
|
||||||
if (!providerList) { return "" }
|
if (!providerList) { return "" }
|
||||||
const list = providerList.map((e: any, i: number) => {
|
const list = providerList.map((e: any, i: number) => {
|
||||||
return <div className="w-6 aspect-square">
|
return <div className="w-6 aspect-square" key={e.link}>
|
||||||
<a href={link}>
|
<a href={link}>
|
||||||
<img src={tmdb.makeLogoPath(e.logo_path)} key={e.provider_id + "_" + i} /></a>
|
<img src={tmdb.makeLogoPath(e.logo_path)} key={e.provider_id + "_" + i} /></a>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in New Issue