aboutsummaryrefslogtreecommitdiff
path: root/src/app/manga
diff options
context:
space:
mode:
Diffstat (limited to 'src/app/manga')
-rw-r--r--src/app/manga/[title]/[id]/[read]/read.module.css6
-rw-r--r--src/app/manga/[title]/[id]/info.module.css11
-rw-r--r--src/app/manga/[title]/[id]/page.jsx1
-rw-r--r--src/app/manga/[title]/title.module.css10
-rw-r--r--src/app/manga/manga.module.css6
5 files changed, 32 insertions, 2 deletions
diff --git a/src/app/manga/[title]/[id]/[read]/read.module.css b/src/app/manga/[title]/[id]/[read]/read.module.css
index a95dcfe..9a27a38 100644
--- a/src/app/manga/[title]/[id]/[read]/read.module.css
+++ b/src/app/manga/[title]/[id]/[read]/read.module.css
@@ -65,4 +65,10 @@
.Image {
width: 100%;
}
+}
+
+@media (prefers-color-scheme: light) {
+ .CurrentReadingContainer {
+ color: black;
+ }
} \ No newline at end of file
diff --git a/src/app/manga/[title]/[id]/info.module.css b/src/app/manga/[title]/[id]/info.module.css
index 5bb13fe..fbb493e 100644
--- a/src/app/manga/[title]/[id]/info.module.css
+++ b/src/app/manga/[title]/[id]/info.module.css
@@ -157,4 +157,15 @@
font-size: 14px;
}
+}
+
+@media (prefers-color-scheme: light) {
+ .MangaDescription {
+ color: black;
+ }
+
+ .Character p {
+ color: black;
+ }
+
} \ No newline at end of file
diff --git a/src/app/manga/[title]/[id]/page.jsx b/src/app/manga/[title]/[id]/page.jsx
index dc4c682..3038b3f 100644
--- a/src/app/manga/[title]/[id]/page.jsx
+++ b/src/app/manga/[title]/[id]/page.jsx
@@ -3,7 +3,6 @@ import Image from "next/image";
import Buttons from "./buttons";
import { redirect } from "next/navigation";
import { FaStar } from "react-icons/fa";
-import CurrentReading from "./[read]/currentReading";
export default async function MangaInfo({ params }) {
const id = params.id;
diff --git a/src/app/manga/[title]/title.module.css b/src/app/manga/[title]/title.module.css
index 1369856..5198c9b 100644
--- a/src/app/manga/[title]/title.module.css
+++ b/src/app/manga/[title]/title.module.css
@@ -64,4 +64,14 @@
.Main {
max-width: 100%;
}
+}
+
+@media (prefers-color-scheme: light) {
+ .SearchedFor {
+ color: black;
+ }
+
+ .MangaDescription {
+ color: black;
+ }
} \ No newline at end of file
diff --git a/src/app/manga/manga.module.css b/src/app/manga/manga.module.css
index 87c9563..0887bc8 100644
--- a/src/app/manga/manga.module.css
+++ b/src/app/manga/manga.module.css
@@ -154,4 +154,8 @@
}
}
-/* Search Bar from searchBar.jsx */ \ No newline at end of file
+@media (prefers-color-scheme: light) {
+ .WelcomeText {
+ color: black;
+ }
+} \ No newline at end of file