mirror of
https://github.com/wukko/cobalt.git
synced 2024-11-16 05:09:57 +00:00
19 lines
312 B
Svelte
19 lines
312 B
Svelte
<script lang="ts">
|
|
export let closeFunc: () => void;
|
|
</script>
|
|
|
|
<div
|
|
id="dialog-backdrop-close"
|
|
aria-hidden="true"
|
|
on:click={() => closeFunc()}
|
|
></div>
|
|
|
|
<style>
|
|
#dialog-backdrop-close {
|
|
position: inherit;
|
|
height: 100%;
|
|
width: 100%;
|
|
z-index: -1;
|
|
}
|
|
</style>
|