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

15 lines
286 B
Svelte
Raw Normal View History

2021-08-09 14:49:17 +02:00
<script lang="ts">
import {CONTACT_URL} from "../../Enum/EnvironmentVariable";
2021-08-09 14:49:17 +02:00
</script>
<iframe title="contact" src="{CONTACT_URL}"></iframe>
2021-08-09 14:49:17 +02:00
<style lang="scss">
iframe {
border: none;
2021-08-09 14:49:17 +02:00
height: calc(100% - 56px);
width: 100%;
margin: 0;
2021-08-09 14:49:17 +02:00
}
</style>