mirror of
https://github.com/iptv-org/iptv-org.github.io.git
synced 2025-05-14 02:50:07 -04:00
Update src/
This commit is contained in:
parent
09b07e9b24
commit
86743c74f5
132 changed files with 4418 additions and 1907 deletions
8
src/components/Popup.svelte
Normal file
8
src/components/Popup.svelte
Normal file
|
@ -0,0 +1,8 @@
|
|||
<script lang="ts">
|
||||
export let wrapperClass = 'flex justify-center p-2 pb-20 sm:py-28 z-50'
|
||||
export let onClose = () => {}
|
||||
</script>
|
||||
|
||||
<div class={wrapperClass} role="presentation" on:keypress on:click|self={() => onClose()}>
|
||||
<div class="w-full max-w-3xl"><slot /></div>
|
||||
</div>
|
Loading…
Add table
Add a link
Reference in a new issue