diff options
| author | zephex-alt <[email protected]> | 2024-04-29 07:11:35 +0000 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-04-29 07:11:35 +0000 |
| commit | 7e33153f834b4712172f8e06e90ec4eda3cca028 (patch) | |
| tree | a9316148e84bf9ab3b5cc0af2c162dd1fbdc539b /src/app/kdrama/components | |
| parent | downloading mangas is not longer available. i need a proper hosting to proper... (diff) | |
| download | dramalama-7e33153f834b4712172f8e06e90ec4eda3cca028.tar.xz dramalama-7e33153f834b4712172f8e06e90ec4eda3cca028.zip | |
adjusted the images' width and height
Diffstat (limited to 'src/app/kdrama/components')
| -rw-r--r-- | src/app/kdrama/components/popular.jsx | 6 | ||||
| -rw-r--r-- | src/app/kdrama/components/recent.jsx | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/src/app/kdrama/components/popular.jsx b/src/app/kdrama/components/popular.jsx index 335b45a..1b93313 100644 --- a/src/app/kdrama/components/popular.jsx +++ b/src/app/kdrama/components/popular.jsx @@ -19,11 +19,11 @@ export default async function PopularDramas() { key={index}
style={{ textDecoration: "none" }}
>
- <div className={styles.AnimeEntry}>
+ <div className={styles.AnimeEntry} title={item.title}>
<Image
src={`https://sup-proxy.zephex0-f6c.workers.dev/api-content?url=${item.image}`}
- width={150}
- height={230}
+ width={190}
+ height={270}
alt="Drama Poster"
/>
<p>{item.title}</p>
diff --git a/src/app/kdrama/components/recent.jsx b/src/app/kdrama/components/recent.jsx index e4cdb69..b53009e 100644 --- a/src/app/kdrama/components/recent.jsx +++ b/src/app/kdrama/components/recent.jsx @@ -18,11 +18,11 @@ export default async function RecentDramas() { key={index}
style={{ textDecoration: "none" }}
>
- <div className={styles.AnimeEntry}>
+ <div className={styles.AnimeEntry} title={item.title}>
<Image
src={`https://sup-proxy.zephex0-f6c.workers.dev/api-content?url=${item.image}`}
- width={160}
- height={240}
+ width={190}
+ height={270}
alt="Drama Poster"
/>
<p>{item.title}</p>
|