show thought

This commit is contained in:
Auto
2025-12-31 08:07:36 +02:00
parent f1cabd2d49
commit 5cb78a6b43
4 changed files with 182 additions and 1 deletions

View File

@@ -332,6 +332,19 @@
}
}
@keyframes thoughtFade {
0% {
opacity: 0;
transform: translateY(-4px);
filter: blur(2px);
}
100% {
opacity: 1;
transform: translateY(0);
filter: blur(0);
}
}
/* ============================================================================
Utilities Layer
============================================================================ */
@@ -353,6 +366,10 @@
animation: completePop 0.5s var(--transition-neo-fast);
}
.animate-thought-fade {
animation: thoughtFade 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
}
.font-display {
font-family: var(--font-neo-display);
}