From 56e45561d67c28b96aca5cd201e92f9b496f9f3b Mon Sep 17 00:00:00 2001 From: Nils Schneider Date: Thu, 4 Dec 2025 22:19:49 +0100 Subject: [PATCH] fix --- frontend/src/styles/status-toast.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/src/styles/status-toast.css b/frontend/src/styles/status-toast.css index f248ce1..e37d929 100644 --- a/frontend/src/styles/status-toast.css +++ b/frontend/src/styles/status-toast.css @@ -1,6 +1,6 @@ .status-toast-container { position: fixed; - top: 3rem; + bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 5000000; @@ -48,7 +48,7 @@ @keyframes fadeIn { from { opacity: 0; - transform: translateY(-1rem); + transform: translateY(1rem); } to { @@ -65,7 +65,7 @@ to { opacity: 0; - transform: translateY(-1rem); + transform: translateY(1rem); } }