From 2bf3089dbf68892222d0aaac87f2aa2915c07cc7 Mon Sep 17 00:00:00 2001 From: Kirat Date: Wed, 25 Jan 2023 23:39:55 +0530 Subject: [PATCH] Fixed overflow of popover (#12814) --- react/features/toolbox/components/web/Toolbox.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/react/features/toolbox/components/web/Toolbox.tsx b/react/features/toolbox/components/web/Toolbox.tsx index 5313ab890d..5e74b7b3ee 100644 --- a/react/features/toolbox/components/web/Toolbox.tsx +++ b/react/features/toolbox/components/web/Toolbox.tsx @@ -353,9 +353,9 @@ const styles = () => { contextMenu: { position: 'relative' as const, right: 'auto', - maxHeight: 'inherit', margin: 0, - marginBottom: '8px' + marginBottom: '8px', + maxHeight: '80vh' }, hangupMenu: {