🩹(frontend) fix horizontal scroll issue

Oooopsie while merging chat, I forgot to test horizontal scrolling.
It ended up creating a scroll issue. Fixed!

This fix might create a new issue for mobile users, I'll refactor
their layout ASAP.
This commit is contained in:
lebaudantoine
2024-11-15 23:58:06 +01:00
committed by aleb_the_flash
parent 6aed4cb751
commit 6fcb69bd3c

View File

@@ -149,7 +149,13 @@ export function VideoConference({ ...props }: VideoConferenceProps) {
const { isSidePanelOpen } = useSidePanel()
return (
<div className="lk-video-conference" {...props}>
<div
className="lk-video-conference"
{...props}
style={{
overflowX: 'hidden',
}}
>
{isWeb() && (
<LayoutContextProvider
value={layoutContext}