From faecf3bcbff472e64a1e6b56d7ba0c9806319ecf Mon Sep 17 00:00:00 2001 From: Manuel Date: Sun, 21 May 2023 19:23:50 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=84=20Fix=20video=20stream=20width?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/widgets/video/VideoFeed.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/widgets/video/VideoFeed.tsx b/src/widgets/video/VideoFeed.tsx index 5486243a1..b24936c73 100644 --- a/src/widgets/video/VideoFeed.tsx +++ b/src/widgets/video/VideoFeed.tsx @@ -58,6 +58,7 @@ const VideoFeed = ({ source, controls, autoPlay, muted }: VideoFeedProps) => { const useStyles = createStyles(({ radius }) => ({ video: { height: '100%', + width: '100%', borderRadius: radius.md, overflow: 'hidden', },