mirror of
https://github.com/phishingclub/phishingclub.git
synced 2026-07-09 21:58:42 +02:00
11 lines
292 B
Svelte
11 lines
292 B
Svelte
<script>
|
|
export let overflowX = false;
|
|
</script>
|
|
|
|
<div
|
|
class="px-6 flex flex-col items-start sm:items-start md:items-start lg:items-start xl:items-start 2xl:items-start text-gray-900 dark:text-gray-100 transition-colors duration-200"
|
|
class:overflow-x-scroll={overflowX}
|
|
>
|
|
<slot />
|
|
</div>
|