2020-06-11 21:18:59 +02:00
|
|
|
<script>
|
2020-11-17 13:08:24 +01:00
|
|
|
import { styleable } from "@budibase/component-sdk"
|
|
|
|
|
2020-06-11 21:18:59 +02:00
|
|
|
export let embed
|
2020-11-17 13:08:24 +01:00
|
|
|
export let styles
|
2020-06-11 21:18:59 +02:00
|
|
|
</script>
|
|
|
|
|
2020-11-17 13:08:24 +01:00
|
|
|
<div use:styleable={styles}>
|
|
|
|
{@html embed}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<style>
|
|
|
|
div {
|
|
|
|
position: relative;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: stretch;
|
|
|
|
}
|
|
|
|
div :global(> *) {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
}
|
|
|
|
</style>
|