1
0
Fork 0
mirror of synced 2024-09-13 15:57:37 +12:00
budibase/packages/standard-components/src/Embed.svelte

24 lines
349 B
Svelte
Raw Normal View History

<script>
import { getContext } from "svelte"
const { styleable } = getContext("sdk")
const styles = getContext("style")
export let embed
</script>
<div use:styleable={$styles}>
{@html embed}
</div>
<style>
div {
position: relative;
}
div :global(> *) {
width: 100%;
height: 100%;
position: absolute;
}
</style>