diff options
| author | real-zephex <[email protected]> | 2024-04-23 20:32:21 +0530 |
|---|---|---|
| committer | real-zephex <[email protected]> | 2024-04-23 20:32:21 +0530 |
| commit | 6a037f2394bec426facc4f6fa9a5baa4cd78787b (patch) | |
| tree | a2a080d270e600ec8fb1f7f12b8858878b88494b /src/app/anime/recent/recent.module.css | |
| parent | somethign somethign (diff) | |
| download | dramalama-6a037f2394bec426facc4f6fa9a5baa4cd78787b.tar.xz dramalama-6a037f2394bec426facc4f6fa9a5baa4cd78787b.zip | |
Made the anime and kdrama titles to cut off after reaching div width. it just looks nice imo
Diffstat (limited to 'src/app/anime/recent/recent.module.css')
| -rw-r--r-- | src/app/anime/recent/recent.module.css | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/app/anime/recent/recent.module.css b/src/app/anime/recent/recent.module.css index ca88518..baa93ba 100644 --- a/src/app/anime/recent/recent.module.css +++ b/src/app/anime/recent/recent.module.css @@ -53,8 +53,9 @@ margin: 5px auto;
width: 140px;
font-family: "Atkinson Hyperlegible";
- height: 80px;
- overflow-y: auto;
+ overflow: hidden;
+ white-space: nowrap;
+ text-overflow: ellipsis;
transition: font-size 400ms ease;
}
|