From ca75f88cd871e9ed76eee1e2bd54a0d72059bde9 Mon Sep 17 00:00:00 2001 From: Ryan Peters Date: Thu, 17 Jul 2025 17:15:21 -0400 Subject: [PATCH] fade in/out the toast --- wwwroot/css/site.css | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/wwwroot/css/site.css b/wwwroot/css/site.css index b03c17b..0933f04 100644 --- a/wwwroot/css/site.css +++ b/wwwroot/css/site.css @@ -170,13 +170,14 @@ body.dark textarea { font-size: 11px; padding: 6px; color: #fff; - transition: bottom 0.3s; - opacity: 0.8; + transition: bottom 0.3s, opacity 0.3s; + opacity: 0; border-radius: 5px 5px 0 0; } .toast.show { bottom: 0; + opacity: 0.8; } .toast#saved-indicator {