fix(alerts): adjust alert container position for improved visibility

This commit is contained in:
Sam Chau
2025-12-29 01:35:23 +10:30
parent 3ae82153d9
commit d120aa5d02

View File

@@ -3,7 +3,7 @@
import Alert from './Alert.svelte';
</script>
<div class="pointer-events-none fixed top-20 right-4 z-50 flex flex-col gap-3">
<div class="pointer-events-none fixed top-4 right-4 z-50 flex flex-col gap-3">
{#each $alertStore as alert (alert.id)}
<div class="pointer-events-auto">
<Alert id={alert.id} type={alert.type} message={alert.message} />