Spaces:
Sleeping
Sleeping
File size: 312 Bytes
43a06dc |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
<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>
|