aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/app/info/info.css4
-rw-r--r--src/app/kdrama/kdrama.css2
-rw-r--r--src/app/kdrama/page.jsx8
-rw-r--r--src/app/video/video.css2
4 files changed, 9 insertions, 7 deletions
diff --git a/src/app/info/info.css b/src/app/info/info.css
index e9bb501..0141b6a 100644
--- a/src/app/info/info.css
+++ b/src/app/info/info.css
@@ -17,7 +17,7 @@
}
.titleContainer p {
- color: var(--neon-green );
+ color: var(--neon-yellow);
width: 60%;
font-family: "Kanit";
font-size: 24px;
@@ -79,5 +79,5 @@
.infoPageContainer p {
color: black;
}
-
+
} \ No newline at end of file
diff --git a/src/app/kdrama/kdrama.css b/src/app/kdrama/kdrama.css
index 2b58414..900232f 100644
--- a/src/app/kdrama/kdrama.css
+++ b/src/app/kdrama/kdrama.css
@@ -139,6 +139,7 @@
justify-content: space-between;
align-items: center;
margin: 0px auto;
+ width: 100%;
}
.dramaTitle {
@@ -157,6 +158,7 @@
color: var(--softer-purple);
font-family: "Atkinson Hyperlegible";
text-align: center;
+ max-width: 95%;
}
.episodesButtonsContainer {
diff --git a/src/app/kdrama/page.jsx b/src/app/kdrama/page.jsx
index 2126b0e..4426a2b 100644
--- a/src/app/kdrama/page.jsx
+++ b/src/app/kdrama/page.jsx
@@ -92,7 +92,7 @@ export default function Kdrama() {
)}
{details && (
- <div className="dramaInfo">
+ <div className="dramaInfo2">
<div className="titleContainer2">
<p className="dramaTitle">{details.title}</p>
<Image
@@ -103,9 +103,9 @@ export default function Kdrama() {
alt="Drama"
/>
</div>
- <p className="dramaDescription">
- {details.description}
- </p>
+ <div className="dramaDescription">
+ <p>{details.description}</p>
+ </div>
<div className="episodesButtonsContainer">
{details.episodes.map((eps, index) => (
<button
diff --git a/src/app/video/video.css b/src/app/video/video.css
index aab1f54..5ccb58f 100644
--- a/src/app/video/video.css
+++ b/src/app/video/video.css
@@ -27,4 +27,4 @@
.video2 {
width: 100%;
}
-}
+} \ No newline at end of file