From e2d0e3abd490c33acee444489ef9285aac1f7341 Mon Sep 17 00:00:00 2001 From: Tim Haasdyk Date: Mon, 6 Oct 2025 11:25:58 +0200 Subject: [PATCH] Make Lexbox notifications scroll if to tall And keep the close button in view. Using sticky is a bit weird, but fixed and absolute make things messy and this is only for edge cases. --- frontend/src/lib/notify/Notify.svelte | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/src/lib/notify/Notify.svelte b/frontend/src/lib/notify/Notify.svelte index 233d459170..0a036ff273 100644 --- a/frontend/src/lib/notify/Notify.svelte +++ b/frontend/src/lib/notify/Notify.svelte @@ -8,16 +8,16 @@ {#if $notifications.length > 0} -
+
{#if $notifications.length > 1}
{$t('notify.close_all')}
{/if} {#each $notifications as note (note)} -
+
{note.message} - +
{/each}