From 104c9004c5a3b7138f8bbe1a60f2c4ee5bab5090 Mon Sep 17 00:00:00 2001 From: wukko Date: Tue, 25 Feb 2025 00:44:43 +0600 Subject: [PATCH] web/UpdateNotification: fix mobile position --- web/src/components/misc/UpdateNotification.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/components/misc/UpdateNotification.svelte b/web/src/components/misc/UpdateNotification.svelte index 95a7d580..390d17d3 100644 --- a/web/src/components/misc/UpdateNotification.svelte +++ b/web/src/components/misc/UpdateNotification.svelte @@ -86,7 +86,7 @@ @media screen and (max-width: 535px) { #update-notification { - bottom: var(--sidebar-height-mobile); + bottom: calc(var(--sidebar-height-mobile) + 5px); justify-content: center; animation: slide-in-bottom 0.4s; }