diff --git a/src/app/manga/[title]/page.jsx b/src/app/manga/[title]/page.jsx
index 01350d7..2e3e4de 100644
--- a/src/app/manga/[title]/page.jsx
+++ b/src/app/manga/[title]/page.jsx
@@ -34,10 +34,9 @@ export default async function MangaInfo({ params }) {
@@ -51,13 +50,15 @@ export default async function MangaInfo({ params }) {
: desc}
- {item.status}
+ Status: {item.status || "not sure"}
- Chapters: {item.totalChapters}
+ Chapters:{" "}
+ {item.totalChapters || "not sure"}
- Volumes: {item.volumes}
+ Volumes:{" "}
+ {item.volumes || "not sure"}
diff --git a/src/app/manga/[title]/title.module.css b/src/app/manga/[title]/title.module.css
index bbfc99b..203efad 100644
--- a/src/app/manga/[title]/title.module.css
+++ b/src/app/manga/[title]/title.module.css
@@ -11,7 +11,6 @@
.SearchedFor {
color: white;
text-align: center;
- font-family: "Lexend Deca", serif;
font-size: 26px;
}
@@ -20,10 +19,10 @@
flex-direction: row;
margin: 0px 10px 10px 10px;
padding: 10px;
- border-style: dotted;
+ border-style: solid;
+ border-radius: 0.5rem;
border-color: #363636 #474747;
- border-radius: 10px;
- border-width: 4px;
+ border-width: 0.1rem;
align-items: center;
cursor: pointer;
transition: opacity 200ms linear, transform 200ms linear;
@@ -42,33 +41,44 @@
.MangaInfo {
color: white;
margin-left: 20px;
- font-family: "Atkinson Hyperlegible";
+}
+
+.MangaEntries img {
+ border-radius: 0.5rem;
}
.MangaTitle {
- font-family: "Lexend Deca", serif;
margin: 0px;
- font-size: 22px;
+ font-size: 28px;
color: var(--neon-green);
}
+.MangaDescription {
+ margin: 0.5rem 0 0.5rem 0;
+}
+
.MangaStatus {
color: var(--soft-purple);
- font-family: "Poppins", serif;
+ margin: 0px;
}
.MangaVolume {
+ margin: 0px;
color: #ffacac;
- font-family: "Poppins", serif;
}
.MangaChapters {
color: #ffebb4;
- font-family: "Poppins", serif;
+ margin: 0.3rem 0 0.3rem 0;
}
@media screen and (max-width: 768px) {
.Main {
max-width: 100%;
}
+
+ .MangaDescription {
+ max-height: 10rem;
+ overflow: auto;
+ }
}
diff --git a/src/app/manga/history/continueWatching/cw.module.css b/src/app/manga/history/continueWatching/cw.module.css
index 29d0dc9..e83be6b 100644
--- a/src/app/manga/history/continueWatching/cw.module.css
+++ b/src/app/manga/history/continueWatching/cw.module.css
@@ -5,12 +5,10 @@
.mainText {
color: var(--light-green);
- font-family: "Poppins", serif;
font-size: 24px;
}
.animeContainer {
- font-family: "Poppins", serif;
font-size: 18px;
margin: 0px;
}
@@ -60,7 +58,7 @@
margin-right: 0.4rem;
border-radius: 0.2rem;
padding: 0.2rem;
- font-family: "Atkinson Hyperlegible", serif;
+ font-family: "Lexend Deca", serif;
background-color: #303030;
color: white;
cursor: pointer;
--
cgit v1.2.3