Fix media cover image sizing in WatchList component

- Add explicit width (230px) and height (330px) to media cover images
- Apply object-cover class to maintain aspect ratio and prevent distortion
- Ensures uniform sizing across all media cover images in the watch list

This change improves visual consistency in the UI by standardizing the display dimensions of anime/manga cover images.
This commit is contained in:
2026-03-22 20:48:56 -04:00
parent 8c169d549a
commit 35e93c0ca9

View File

@@ -58,7 +58,7 @@
}} }}
> >
<img <img
class="rounded-lg" class="rounded-lg w-[230px] h-[330px] object-cover"
src={media.media.coverImage.large} src={media.media.coverImage.large}
alt={media.media.title.english === "" alt={media.media.title.english === ""
? media.media.title.romaji ? media.media.title.romaji