mirror of https://github.com/Budibase/budibase.git
4 changed files with 48 additions and 0 deletions
@ -0,0 +1,28 @@ |
|||
<script> |
|||
import { getContext } from "svelte" |
|||
|
|||
const { styleable } = getContext("sdk") |
|||
const component = getContext("component") |
|||
|
|||
export let url = "" |
|||
$: style = url ? `background-image: url("${url}")` : "" |
|||
</script> |
|||
|
|||
<div class="outer" use:styleable={$component.styles}> |
|||
<div class="inner" {style} /> |
|||
</div> |
|||
|
|||
<style> |
|||
.outer { |
|||
position: relative; |
|||
} |
|||
|
|||
.inner { |
|||
position: absolute; |
|||
height: 100%; |
|||
width: 100%; |
|||
background-repeat: no-repeat; |
|||
background-size: cover; |
|||
background-position: top center; |
|||
} |
|||
</style> |
|||
Loading…
Reference in new issue