From 1dd4f8d7a312f00261b6f13282b8b6bc78387f48 Mon Sep 17 00:00:00 2001 From: Broque Thomas Date: Wed, 10 Sep 2025 17:22:26 -0700 Subject: [PATCH] Update style.css --- webui/static/style.css | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/webui/static/style.css b/webui/static/style.css index bc9bdc9e..d018c296 100644 --- a/webui/static/style.css +++ b/webui/static/style.css @@ -1911,9 +1911,13 @@ body { /* Toast Notifications */ .toast-container { position: fixed; - top: 20px; - right: 20px; + bottom: 20px; + left: 50%; + transform: translateX(-50%); z-index: 10000; + display: flex; + flex-direction: column; + align-items: center; } .toast { @@ -1940,11 +1944,11 @@ body { @keyframes slideIn { from { - transform: translateX(100%); + transform: translateY(100%); opacity: 0; } to { - transform: translateX(0); + transform: translateY(0); opacity: 1; } }