diff options
| author | real-zephex <[email protected]> | 2024-05-13 21:24:07 +0530 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-05-13 21:24:07 +0530 |
| commit | bf9183d77462a709ec645c20bda12df97a81d26e (patch) | |
| tree | 85f21c522d46f1f13e783275d7a77f0d6eecaaa1 /src/app/movies | |
| parent | Update README.md (diff) | |
| parent | added loading.jsx file and it's css subpart (diff) | |
| download | dramalama-bf9183d77462a709ec645c20bda12df97a81d26e.tar.xz dramalama-bf9183d77462a709ec645c20bda12df97a81d26e.zip | |
Merge pull request #27 from real-zephex/improvement-2
added loading.jsx file and it's css subpart
Diffstat (limited to 'src/app/movies')
| -rw-r--r-- | src/app/movies/components/video_player.jsx | 2 | ||||
| -rw-r--r-- | src/app/movies/styles/info.module.css | 9 |
2 files changed, 10 insertions, 1 deletions
diff --git a/src/app/movies/components/video_player.jsx b/src/app/movies/components/video_player.jsx index 86ff8e5..86b6748 100644 --- a/src/app/movies/components/video_player.jsx +++ b/src/app/movies/components/video_player.jsx @@ -7,7 +7,7 @@ export default function VIDEO_PLAYER({ id: id }) { const [frame, setFrame] = useState(null); useEffect(() => { - make_player(`https://vidsrc.pro/embed/movie/${id}`); + make_player(`https://vidsrc.icu/embed/movie/${id}`); }, []); function make_player(url) { diff --git a/src/app/movies/styles/info.module.css b/src/app/movies/styles/info.module.css index a0da8d9..b848f7f 100644 --- a/src/app/movies/styles/info.module.css +++ b/src/app/movies/styles/info.module.css @@ -53,6 +53,15 @@ overflow: auto; } +.MovieDescription::-webkit-scrollbar { + width: 5px; +} + +.MovieDescription::-webkit-scrollbar-thumb { + background-color: var(--nord-yellow); + border-radius: 1rem; +} + .OtherInfo { display: flex; flex-direction: column; |