partey_workadventure/front/src/Components/Menu/CustomSubMenu.svelte

16 lines
243 B
Svelte
Raw Normal View History

<script lang="ts">
export let iframe: string;
</script>
<iframe title="customSubMenu" src="{iframe}"></iframe>
<style lang="scss">
iframe {
border: none;
height: calc(100% - 56px);
width: 100%;
margin: 0;
}
</style>