story-kit: start 73_story_fade_out_completed_agents

This commit is contained in:
Dave
2026-02-23 14:27:15 +00:00
parent 6297d1643e
commit 32e1f0d342
4 changed files with 322 additions and 3 deletions

View File

@@ -226,3 +226,13 @@ body,
.pulse {
animation: pulse 1.5s infinite;
}
/* Agent entry fade-out for completed/failed agents */
@keyframes agentFadeOut {
from {
opacity: 1;
}
to {
opacity: 0;
}
}