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/recent.module.css | |
| 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/recent.module.css')
| -rw-r--r-- | src/app/anime/recent/recent.module.css | 9 |
1 files changed, 7 insertions, 2 deletions
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 { |