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/web-series/components/descriptionTabs.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/web-series/components/descriptionTabs.jsx')
| -rw-r--r-- | src/app/web-series/components/descriptionTabs.jsx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/app/web-series/components/descriptionTabs.jsx b/src/app/web-series/components/descriptionTabs.jsx index ec6a78b..d0a4945 100644 --- a/src/app/web-series/components/descriptionTabs.jsx +++ b/src/app/web-series/components/descriptionTabs.jsx @@ -19,14 +19,14 @@ export default function SeriesDescriptionTabs({ data: data }) { <div className="flex w-full flex-col"> <Tabs aria-label="Options" className={lexend.className}> <Tab key="description" title="Description"> - <Card> + <Card shadow="sm"> <CardBody className={atkinson.className}> {data.overview || "No description found"} </CardBody> </Card> </Tab> <Tab key="episodes" title="Details"> - <Card> + <Card shadow="sm"> <CardBody className={lexend.className}> <h4> <strong>Tagline</strong>:{" "} @@ -86,7 +86,7 @@ export default function SeriesDescriptionTabs({ data: data }) { </Card> </Tab> <Tab key="seasons" title="Seasons"> - <Card> + <Card shadow="sm"> <CardBody> {data.seasons && data.seasons.map((item, index) => ( @@ -94,7 +94,7 @@ export default function SeriesDescriptionTabs({ data: data }) { key={index} className="flex flex-row items-center mb-1" isPressable - shadow="lg" + shadow="sm" > <Image src={`https://sup-proxy.zephex0-f6c.workers.dev/api-content?url=https://image.tmdb.org/t/p/original${item.poster_path}`} |