fade in/out the toast

This commit is contained in:
Ryan Peters
2025-07-17 17:15:21 -04:00
parent 1279e16fad
commit ca75f88cd8

View File

@@ -170,13 +170,14 @@ body.dark textarea {
font-size: 11px; font-size: 11px;
padding: 6px; padding: 6px;
color: #fff; color: #fff;
transition: bottom 0.3s; transition: bottom 0.3s, opacity 0.3s;
opacity: 0.8; opacity: 0;
border-radius: 5px 5px 0 0; border-radius: 5px 5px 0 0;
} }
.toast.show { .toast.show {
bottom: 0; bottom: 0;
opacity: 0.8;
} }
.toast#saved-indicator { .toast#saved-indicator {