diff options
| author | real-zephex <[email protected]> | 2024-04-02 22:41:19 +0530 |
|---|---|---|
| committer | real-zephex <[email protected]> | 2024-04-02 22:41:19 +0530 |
| commit | 794cb6236fa256f8074c56f372eba05526e7c066 (patch) | |
| tree | 4d53c0977894bc2939e430e930fd9f6dda6ec0e5 /src/app/anime/recent | |
| parent | fixes: minor css modifications, added basic information about the last read m... (diff) | |
| download | dramalama-794cb6236fa256f8074c56f372eba05526e7c066.tar.xz dramalama-794cb6236fa256f8074c56f372eba05526e7c066.zip | |
UI Upgrades for anime section.
Diffstat (limited to 'src/app/anime/recent')
| -rw-r--r-- | src/app/anime/recent/page.jsx | 4 | ||||
| -rw-r--r-- | src/app/anime/recent/recent.module.css | 9 |
2 files changed, 9 insertions, 4 deletions
diff --git a/src/app/anime/recent/page.jsx b/src/app/anime/recent/page.jsx index 9094ead..a5e3a05 100644 --- a/src/app/anime/recent/page.jsx +++ b/src/app/anime/recent/page.jsx @@ -27,8 +27,8 @@ export default async function Releases() { <Image src={item.image} className={styles.RecentImage} - width={180} - height={260} + width={150} + height={230} alt="Drama" priority /> diff --git a/src/app/anime/recent/recent.module.css b/src/app/anime/recent/recent.module.css index 7805d52..20c5e1b 100644 --- a/src/app/anime/recent/recent.module.css +++ b/src/app/anime/recent/recent.module.css @@ -30,13 +30,18 @@ .RecentEntries { margin: 7px; + transition: transform 0.1s linear; +} + +.RecentEntries:hover { + transition: transform 0.1s linear; + transform: scale(0.97); } .RecentEntries p { text-align: center; margin: 5px auto; - max-height: 70px; - overflow-y: auto; + width: 140px; } .RecentEntries p::-webkit-scrollbar { |