diff options
| author | real-zephex <[email protected]> | 2024-04-29 10:06:01 +0530 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-04-29 10:06:01 +0530 |
| commit | fdc6b602228d923b0c255521ee74289e7a0d94a2 (patch) | |
| tree | 3531fc9fd2fbe178d43e6a1c67d116f30fd4a61e /src/app/anime/top-airing | |
| parent | Update README.md (diff) | |
| parent | adjusted the width and height of the image just by a little (diff) | |
| download | dramalama-fdc6b602228d923b0c255521ee74289e7a0d94a2.tar.xz dramalama-fdc6b602228d923b0c255521ee74289e7a0d94a2.zip | |
Merge pull request #5 from zephex-alt/master
changes
Diffstat (limited to 'src/app/anime/top-airing')
| -rw-r--r-- | src/app/anime/top-airing/page.jsx | 2 | ||||
| -rw-r--r-- | src/app/anime/top-airing/trending.module.css | 5 |
2 files changed, 6 insertions, 1 deletions
diff --git a/src/app/anime/top-airing/page.jsx b/src/app/anime/top-airing/page.jsx index e406860..c5aadd9 100644 --- a/src/app/anime/top-airing/page.jsx +++ b/src/app/anime/top-airing/page.jsx @@ -25,7 +25,7 @@ export default async function Trending() { src={`https://sup-proxy.zephex0-f6c.workers.dev/api-content?url=${item.image}`}
className={styles.trendingImage}
width={150}
- height={230}
+ height={280}
alt="Drama"
priority
/>
diff --git a/src/app/anime/top-airing/trending.module.css b/src/app/anime/top-airing/trending.module.css index 5b98e57..1ce9b45 100644 --- a/src/app/anime/top-airing/trending.module.css +++ b/src/app/anime/top-airing/trending.module.css @@ -20,6 +20,11 @@ overflow-x: auto;
}
+.trending img {
+ width: auto;
+ height: 280px;
+}
+
.TrendingContainer:hover .trendingEntries {
opacity: 0.5;
}
|