Fix height of custom page (#336)

This commit is contained in:
lukasIO 2024-09-19 18:06:00 +02:00 committed by GitHub
parent 8e7c8adab8
commit c24b42eaad
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -21,7 +21,7 @@ export default function CustomRoomConnection(props: {
}
return (
<main data-lk-theme="default">
<main data-lk-theme="default" style={{ height: '100%' }}>
<VideoConferenceClientImpl liveKitUrl={liveKitUrl} token={token} codec={codec} />
</main>
);