chore: fix margins between tool icons

This commit is contained in:
Yiannis Christodoulou 2025-07-22 00:36:56 +03:00
parent 449baeabd1
commit 20e6a38fc8
2 changed files with 3 additions and 6 deletions

View File

@ -25,6 +25,8 @@
.video-js .vjs-control-bar {
border-bottom-left-radius: 12px !important;
border-bottom-right-radius: 12px !important;
padding-bottom: 5px;
padding-top: 0px;
}
/* Responsive video container */

View File

@ -1595,12 +1595,7 @@ function VideoJSPlayer() {
};
}, []);
return (
<>
<video ref={videoRef} className="video-js vjs-default-skin" tabIndex="0" />
{JSON.stringify(currentVideo.related_media)}
</>
);
return <video ref={videoRef} className="video-js vjs-default-skin" tabIndex="0" />;
}
export default VideoJSPlayer;