diff --git a/react/features/toolbox/components/web/DialogPortal.ts b/react/features/toolbox/components/web/DialogPortal.ts index 2c78b99cf..0278cf3cb 100644 --- a/react/features/toolbox/components/web/DialogPortal.ts +++ b/react/features/toolbox/components/web/DialogPortal.ts @@ -65,6 +65,7 @@ function DialogPortal({ children, className, style, getRef, setSize }: Props) { useEffect(() => { if (portalTarget && getRef) { getRef(portalTarget); + portalTarget.style.zIndex = '300'; } }, [ portalTarget ]);