15 lines
286 B
Svelte
15 lines
286 B
Svelte
|
<script lang="ts">
|
||
|
import {CONTACT_URL} from "../../Enum/EnvironmentVariable";
|
||
|
|
||
|
</script>
|
||
|
|
||
|
<iframe title="contact" src="{CONTACT_URL}"></iframe>
|
||
|
|
||
|
<style lang="scss">
|
||
|
iframe {
|
||
|
border: none;
|
||
|
height: calc(100% - 56px);
|
||
|
width: 100%;
|
||
|
margin: 0;
|
||
|
}
|
||
|
</style>
|