diff options
| author | real-zephex <[email protected]> | 2024-03-26 10:41:50 +0530 |
|---|---|---|
| committer | real-zephex <[email protected]> | 2024-03-26 10:41:50 +0530 |
| commit | a34ff87a7e2237217151dcdee37bae94d0ea6f2a (patch) | |
| tree | d24f22c56a3d496aa76fc1245f0f21b9d18e8adb /src | |
| parent | fix: small css fix (diff) | |
| download | dramalama-a34ff87a7e2237217151dcdee37bae94d0ea6f2a.tar.xz dramalama-a34ff87a7e2237217151dcdee37bae94d0ea6f2a.zip | |
changed the hosting for the image proxy
Diffstat (limited to 'src')
| -rw-r--r-- | src/app/manga/[title]/[id]/[read]/page.jsx | 2 | ||||
| -rw-r--r-- | src/app/manga/[title]/[id]/[read]/read.module.css | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/src/app/manga/[title]/[id]/[read]/page.jsx b/src/app/manga/[title]/[id]/[read]/page.jsx index 142d414..7369ba0 100644 --- a/src/app/manga/[title]/[id]/[read]/page.jsx +++ b/src/app/manga/[title]/[id]/[read]/page.jsx @@ -29,7 +29,7 @@ export default async function Read({ params }) { images.map((item, index) => ( <div className={styles.Image} key={index}> <Image - src={`https://image-proxy-manga.vercel.app/image-proxy?url=${item}`} + src={`https://image-proxy-4xuu.onrender.com/image-proxy?url=${item}`} key={index} alt="Pages" width={800} diff --git a/src/app/manga/[title]/[id]/[read]/read.module.css b/src/app/manga/[title]/[id]/[read]/read.module.css index 80d91ae..47dde9e 100644 --- a/src/app/manga/[title]/[id]/[read]/read.module.css +++ b/src/app/manga/[title]/[id]/[read]/read.module.css @@ -1,5 +1,6 @@ .ImageContainer img { width: auto; + max-width: 1000px; height: auto; border-radius: 5px; margin-top: 10px; |