Files
oki-podcast-reader/src/layout/page/container.svelte
T

13 lines
228 B
Svelte
Raw Normal View History

2023-07-11 22:13:18 +01:00
<script>
/** @type {'header'|'section'|'div'}*/
export let as = 'div';
</script>
<svelte:element
this={as}
{...$$restProps}
2023-07-13 00:27:14 +01:00
class="relative mx-auto w-full max-w-6xl px-2 py-4 md:px-6 md:py-6"
2023-07-11 22:13:18 +01:00
>
<slot />
</svelte:element>