forked from EduCraft/curriculum-project-hub
12 lines
333 B
Svelte
12 lines
333 B
Svelte
<script lang="ts">
|
|
import { toasts } from "./stores.js";
|
|
</script>
|
|
|
|
<div class="fixed bottom-4 right-4 z-50 flex flex-col gap-2">
|
|
{#each $toasts as t (t.id)}
|
|
<div class="max-w-[340px] rounded-lg px-4 py-2 text-sm text-white {t.kind === 'err' ? 'bg-[#7E2C26]' : 'bg-[#333230]'}">
|
|
{t.message}
|
|
</div>
|
|
{/each}
|
|
</div>
|