From f8309d93129ae805554458db3360a1f6d1bd5609 Mon Sep 17 00:00:00 2001 From: real-zephex Date: Sun, 7 Apr 2024 20:37:22 +0530 Subject: minor fix --- src/app/anime/[id]/loading.module.css | 2 +- src/app/anime/anime.css | 16 ---------------- src/app/anime/page.jsx | 4 ++-- src/app/anime/recent/recent.module.css | 1 + src/app/anime/top-airing/trending.module.css | 1 + src/app/kdrama/components/popular.jsx | 2 +- src/app/kdrama/loading.jsx | 2 +- src/app/kdrama/styles/info.module.css | 1 + src/app/kdrama/styles/loading.module.css | 3 +-- 9 files changed, 9 insertions(+), 23 deletions(-) delete mode 100644 src/app/anime/anime.css (limited to 'src') diff --git a/src/app/anime/[id]/loading.module.css b/src/app/anime/[id]/loading.module.css index a2940ed..63604d5 100644 --- a/src/app/anime/[id]/loading.module.css +++ b/src/app/anime/[id]/loading.module.css @@ -2,7 +2,7 @@ display: flex; align-items: center; justify-content: center; - height: 85dvh; + height: 100dvh; } .loadingText { diff --git a/src/app/anime/anime.css b/src/app/anime/anime.css deleted file mode 100644 index 451b73a..0000000 --- a/src/app/anime/anime.css +++ /dev/null @@ -1,16 +0,0 @@ -.underDev { - text-align: center; - height: 90vh; - display: flex; - flex-direction: column; - justify-content: center; - align-items: center; -} - -.maintainenceContainer { - display: flex; - justify-content: center; - align-items: center; - flex-direction: column; - height: 80dvh; -} \ No newline at end of file diff --git a/src/app/anime/page.jsx b/src/app/anime/page.jsx index 0b903e2..a7a96c2 100644 --- a/src/app/anime/page.jsx +++ b/src/app/anime/page.jsx @@ -1,11 +1,11 @@ -import "./anime.css"; +import styles from "./anime.module.css"; import Trending from "./top-airing/page"; import Releases from "./recent/page"; import Input from "./search/page"; export default async function Anime() { return ( -
+

diff --git a/src/app/anime/recent/recent.module.css b/src/app/anime/recent/recent.module.css index ab9d98d..658d006 100644 --- a/src/app/anime/recent/recent.module.css +++ b/src/app/anime/recent/recent.module.css @@ -17,6 +17,7 @@ .Recent { display: flex; overflow-x: auto; + margin: 5px; } .Recent::-webkit-scrollbar { diff --git a/src/app/anime/top-airing/trending.module.css b/src/app/anime/top-airing/trending.module.css index 3aa1ee7..f94dc58 100644 --- a/src/app/anime/top-airing/trending.module.css +++ b/src/app/anime/top-airing/trending.module.css @@ -17,6 +17,7 @@ .trending { display: flex; overflow-x: auto; + margin: 5px; } .trending::-webkit-scrollbar { diff --git a/src/app/kdrama/components/popular.jsx b/src/app/kdrama/components/popular.jsx index 4b8b293..42536dd 100644 --- a/src/app/kdrama/components/popular.jsx +++ b/src/app/kdrama/components/popular.jsx @@ -7,7 +7,7 @@ export default async function PopularDramas() { return (
-

Popular Dramas

+

Trending Dramas

{popular && diff --git a/src/app/kdrama/loading.jsx b/src/app/kdrama/loading.jsx index 2415575..9d5b702 100644 --- a/src/app/kdrama/loading.jsx +++ b/src/app/kdrama/loading.jsx @@ -3,7 +3,7 @@ import styles from "./styles/loading.module.css"; export default async function Loading() { return (
-
; +
); } diff --git a/src/app/kdrama/styles/info.module.css b/src/app/kdrama/styles/info.module.css index 3ff021f..456b9cd 100644 --- a/src/app/kdrama/styles/info.module.css +++ b/src/app/kdrama/styles/info.module.css @@ -112,5 +112,6 @@ @media screen and (max-width: 768px) { .VideoPlayer { width: 100%; + height: auto; } } \ No newline at end of file diff --git a/src/app/kdrama/styles/loading.module.css b/src/app/kdrama/styles/loading.module.css index 2a24411..557f50a 100644 --- a/src/app/kdrama/styles/loading.module.css +++ b/src/app/kdrama/styles/loading.module.css @@ -1,11 +1,10 @@ .Main { - height: 100vh; + height: 100dvh; display: flex; justify-content: center; align-items: center; } - .LoadingContainer { width: 50px; height: 50px; -- cgit v1.2.3