From 15349b9294ce551dbe1739c839c5988bf465faa1 Mon Sep 17 00:00:00 2001 From: Dennis Becker Date: Wed, 10 Nov 2021 21:22:53 +0100 Subject: [PATCH] feat: align video to vertical and horizontal center --- ui/src/Room.tsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ui/src/Room.tsx b/ui/src/Room.tsx index 6670633..6a3f890 100644 --- a/ui/src/Room.tsx +++ b/ui/src/Room.tsx @@ -548,5 +548,9 @@ const useStyles = makeStyles((theme: Theme) => ({ height: '100%', overflow: 'auto', + + display: 'flex', + alignItems: 'center', + justifyContent: 'center', }, }));