diff options
| author | real-zephex <[email protected]> | 2024-03-21 23:50:38 +0530 |
|---|---|---|
| committer | real-zephex <[email protected]> | 2024-03-21 23:50:38 +0530 |
| commit | 101fe5c55a5ae48086d10ef75a72b77e69574c18 (patch) | |
| tree | bc0ac23dd2183403a362f12a839b7ebaac0839f5 /src/app | |
| parent | fix: minor css fix (diff) | |
| download | dramalama-101fe5c55a5ae48086d10ef75a72b77e69574c18.tar.xz dramalama-101fe5c55a5ae48086d10ef75a72b77e69574c18.zip | |
fix: minor css fix
Diffstat (limited to 'src/app')
| -rw-r--r-- | src/app/info/[id]/page.jsx | 2 | ||||
| -rw-r--r-- | src/app/info/info.css | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/app/info/[id]/page.jsx b/src/app/info/[id]/page.jsx index 5048612..4cede90 100644 --- a/src/app/info/[id]/page.jsx +++ b/src/app/info/[id]/page.jsx @@ -21,7 +21,7 @@ export default async function AnimeInfo({ params }) { alt="Drama" /> </div> - <p className="dramaDescription">{info.description}</p> + <p className="animeDescription">{info.description}</p> </div> )} diff --git a/src/app/info/info.css b/src/app/info/info.css index cf24758..e9bb501 100644 --- a/src/app/info/info.css +++ b/src/app/info/info.css @@ -27,7 +27,7 @@ border-radius: 10px; } -.dramaDescription { +.animeDescription { color: #ffffff81; font-family: "Lato"; font-size: 16px; |