diff options
| author | real-zephex <[email protected]> | 2024-06-07 14:03:40 +0530 |
|---|---|---|
| committer | real-zephex <[email protected]> | 2024-06-07 14:03:40 +0530 |
| commit | 9e0d502e6f9c0dd1dc88f42f7be4aae71c858164 (patch) | |
| tree | 661d2f887d323c374529f4fe2af168708f2bdb39 /src/app/anime/page.jsx | |
| parent | Merge branch 'master' of https://github.com/real-zephex/Dramalama-Next (diff) | |
| download | dramalama-9e0d502e6f9c0dd1dc88f42f7be4aae71c858164.tar.xz dramalama-9e0d502e6f9c0dd1dc88f42f7be4aae71c858164.zip | |
✨ style: changed background color for show pages
Diffstat (limited to 'src/app/anime/page.jsx')
| -rw-r--r-- | src/app/anime/page.jsx | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/src/app/anime/page.jsx b/src/app/anime/page.jsx index bb8d6f1..d06b344 100644 --- a/src/app/anime/page.jsx +++ b/src/app/anime/page.jsx @@ -35,14 +35,19 @@ const AnimeHomepage = async () => { aria-label="anime redirection links"
className="mx-1 flex flex-col items-center"
>
- <Card className="overflow-visible" isPressable>
+ <Card
+ className="overflow-visible"
+ isPressable
+ isHoverable
+ shadow="sm"
+ >
<CardBody>
<Image
alt="Anime Poster"
src={`https://sup-proxy.zephex0-f6c.workers.dev/api-content?url=${item.image}`}
width={270}
- height={160}
- className="h-60 overflow-hidden rounded-md"
+ height={170}
+ className="h-64 overflow-hidden rounded-md"
priority
/>
</CardBody>
|