Skip to content

Commit

Permalink
fix: overlay chat layout fix
Browse files Browse the repository at this point in the history
  • Loading branch information
KaustubhKumar05 authored Aug 29, 2023
1 parent af15288 commit c4cfdcc
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion packages/roomkit-react/src/Prebuilt/layouts/SidePane.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,11 @@ const SidePane = ({ css = {} }) => {
const mwebStreamingChat = isMobile && (showStreamingUI || isHLSViewer) && ViewComponent === Chat;

return (
<Flex direction="column" justify="center" css={{ w: '$100', h: '100%', flexShrink: 0 }}>
<Flex
direction="column"
justify="center"
css={{ w: '$100', h: '100%', flexShrink: 0, '@md': { position: mwebStreamingChat ? 'absolute' : '' } }}
>
{trackId && (
<VideoTile
peerId={activeScreensharePeerId}
Expand Down

0 comments on commit c4cfdcc

Please sign in to comment.