diff options
| author | real-zephex <[email protected]> | 2024-03-22 00:17:19 +0530 |
|---|---|---|
| committer | real-zephex <[email protected]> | 2024-03-22 00:17:19 +0530 |
| commit | 4f805b86cb3de4b407097f904fccd856242f961e (patch) | |
| tree | 8ae489f5c5fa28bb144999d0624726b68a0165b2 /src/app/kdrama | |
| parent | fix: minor css fix (diff) | |
| download | dramalama-4f805b86cb3de4b407097f904fccd856242f961e.tar.xz dramalama-4f805b86cb3de4b407097f904fccd856242f961e.zip | |
fix: minor css fix
Diffstat (limited to 'src/app/kdrama')
| -rw-r--r-- | src/app/kdrama/kdrama.css | 2 | ||||
| -rw-r--r-- | src/app/kdrama/page.jsx | 8 |
2 files changed, 6 insertions, 4 deletions
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 |