🩹(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:
committed by
aleb_the_flash
parent
6aed4cb751
commit
6fcb69bd3c
@@ -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}
|
||||
|
||||
Reference in New Issue
Block a user