diff options
Diffstat (limited to 'src/app/anime/top-airing/trending.module.css')
| -rw-r--r-- | src/app/anime/top-airing/trending.module.css | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/src/app/anime/top-airing/trending.module.css b/src/app/anime/top-airing/trending.module.css index d03bab3..bffd7ef 100644 --- a/src/app/anime/top-airing/trending.module.css +++ b/src/app/anime/top-airing/trending.module.css @@ -12,4 +12,43 @@ .TrendingText span { margin-top: 6px; +} + +.trending { + display: flex; + overflow-x: auto; +} + +.trending::-webkit-scrollbar { + height: 5px; +} + +.trending::-webkit-scrollbar-thumb { + background-color: #444444; + border-radius: 5px; +} + +.trendingEntries { + margin: 7px; +} + +.trendingEntries p { + text-align: center; + margin: 5px auto; + max-height: 70px; + overflow-y: auto; +} + +.trendingEntries p::-webkit-scrollbar { + width: 5px; +} + +.trendingEntries p::-webkit-scrollbar-thumb { + background-color: #444444; + border-radius: 5px; +} + +.trendingImage { + border-radius: 5px; + aspect-ratio: auto; }
\ No newline at end of file |