diff options
| author | real-zephex <[email protected]> | 2024-03-17 14:04:38 +0530 |
|---|---|---|
| committer | real-zephex <[email protected]> | 2024-03-17 14:04:38 +0530 |
| commit | 2a849c4643a41af91fa01e48a28cfce04ec980ec (patch) | |
| tree | a216b6ae0b6a2ae693373027f8a52b8576940a8e /src | |
| parent | fix: scrubbing throught the progress bar showed wrong thumbnails. fixed it by... (diff) | |
| download | dramalama-2a849c4643a41af91fa01e48a28cfce04ec980ec.tar.xz dramalama-2a849c4643a41af91fa01e48a28cfce04ec980ec.zip | |
fixed a minor bug
Diffstat (limited to 'src')
| -rw-r--r-- | src/app/kdrama/kdrama.css | 2 | ||||
| -rw-r--r-- | src/app/video/[animeId]/page.js | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/app/kdrama/kdrama.css b/src/app/kdrama/kdrama.css index 7a82bea..aa559db 100644 --- a/src/app/kdrama/kdrama.css +++ b/src/app/kdrama/kdrama.css @@ -131,7 +131,6 @@ border-radius: 20px; border-width: 4px; padding: 10px; - /* text-align: center */ } .titleContainer { @@ -140,6 +139,7 @@ justify-content: space-between; align-items: center; margin: 0px auto; + width: 950px; } .dramaTitle { diff --git a/src/app/video/[animeId]/page.js b/src/app/video/[animeId]/page.js index 44ef429..d7e68f9 100644 --- a/src/app/video/[animeId]/page.js +++ b/src/app/video/[animeId]/page.js @@ -22,7 +22,7 @@ export default async function Video({ params }) { {last_two} - {remainingWords} </p> <MediaPlayer - title="Test Player" + title={words} src={link} className="testPlayer" playsInline |