From bb27af8ae4fcf54392e3fb673dc404e10f080a22 Mon Sep 17 00:00:00 2001 From: Ronni Skansing Date: Sat, 28 Mar 2026 20:39:48 +0100 Subject: [PATCH] replaced blur with alpha channel for performance Signed-off-by: Ronni Skansing --- frontend/src/lib/components/Alert.svelte | 6 ++++-- frontend/src/lib/components/ConfirmPrompt.svelte | 8 +++++--- frontend/src/lib/components/Loader.svelte | 8 ++++---- frontend/src/lib/components/Modal.svelte | 11 ++++++++--- frontend/src/lib/components/ThemeToggle.svelte | 2 +- frontend/src/lib/components/header/MobileMenu.svelte | 2 +- .../src/lib/components/modal/CommandPalette.svelte | 5 ++++- frontend/tailwind.config.js | 1 + 8 files changed, 28 insertions(+), 15 deletions(-) diff --git a/frontend/src/lib/components/Alert.svelte b/frontend/src/lib/components/Alert.svelte index 19e3295..a682ddd 100644 --- a/frontend/src/lib/components/Alert.svelte +++ b/frontend/src/lib/components/Alert.svelte @@ -1,4 +1,5 @@ {#if $isLoading && isAnimating} -
+
+ import { fade } from 'svelte/transition'; import { onMount, tick } from 'svelte'; import { beforeNavigate } from '$app/navigation'; import { scrollBarClassesVertical } from '$lib/utils/scrollbar'; @@ -315,9 +316,13 @@ {#if visible}
-
+