workadventure/front/src/Components/Menu/ContactSubMenu.svelte

14 lines
369 B
Svelte
Raw Normal View History

<script lang="ts">
import {contactPageStore} from "../../Stores/MenuStore";
</script>
<iframe title="contact" src="{$contactPageStore}" allow="clipboard-read; clipboard-write self {$contactPageStore}" allowfullscreen></iframe>
<style lang="scss">
iframe {
border: none;
height: calc(100% - 56px);
width: 100%;
margin: 0;
}
</style>