16 lines
243 B
Svelte
16 lines
243 B
Svelte
|
<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>
|