workadventure/front/src/Components/Video/VideoOverlay.svelte

23 lines
592 B
Svelte
Raw Normal View History

<script lang="ts">
2022-01-05 10:27:40 +01:00
// import {LayoutMode} from "../../WebRtc/LayoutManager";
// import {layoutModeStore} from "../../Stores/StreamableCollectionStore";
// import PresentationLayout from "./PresentationLayout.svelte";
// import ChatLayout from "./ChatLayout.svelte";
</script>
<div class="video-overlay">
2022-01-05 10:27:40 +01:00
<!-- {#if $layoutModeStore === LayoutMode.Presentation }
2021-06-15 17:30:28 +02:00
<PresentationLayout />
2021-12-06 16:12:37 +01:00
{:else}
2021-06-15 17:30:28 +02:00
<ChatLayout />
2022-01-05 10:27:40 +01:00
{/if} -->
</div>
<style lang="scss">
.video-overlay {
2021-12-06 16:12:37 +01:00
display: flex;
width: 100%;
height: 100%;
}
</style>