Toast notifications for memory mutations, slide-in animation

This commit is contained in:
Hermes
2026-04-09 21:33:47 -05:00
parent 6e7fae8031
commit 0b0881074a
4 changed files with 89 additions and 4 deletions
+7
View File
@@ -103,6 +103,13 @@ body {
.prose-hermes hr { border: none; border-top: 1px solid var(--border); margin: 16px 0; }
.prose-hermes strong { color: var(--text-1); }
/* Toast animation */
@keyframes slide-in {
from { opacity: 0; transform: translateY(-8px); }
to { opacity: 1; transform: translateY(0); }
}
.animate-slide-in { animation: slide-in 0.2s ease-out; }
/* Divider */
.divider {
height: 1px;