💄(frontend) force a minimum left column width

While in focus, left tiles should be large enough to render
long name and still have a big enough size to get who is in the
tile. Temporary, but functional.
This commit is contained in:
lebaudantoine
2024-09-11 12:34:51 +02:00
committed by aleb_the_flash
parent d511aedd39
commit 412914cf01

View File

@@ -203,7 +203,12 @@ export function VideoConference({
style={{ height: 'auto' }} style={{ height: 'auto' }}
> >
<FocusLayoutContainer> <FocusLayoutContainer>
<CarouselLayout tracks={carouselTracks}> <CarouselLayout
tracks={carouselTracks}
style={{
minWidth: '200px',
}}
>
<ParticipantTile /> <ParticipantTile />
</CarouselLayout> </CarouselLayout>
{focusTrack && <FocusLayout trackRef={focusTrack} />} {focusTrack && <FocusLayout trackRef={focusTrack} />}