feat: evolve investigation into guided conversation

This commit is contained in:
2026-08-03 17:01:04 +01:00
parent 0dd15345e4
commit 7bc1c93486
4 changed files with 169 additions and 123 deletions
+21
View File
@@ -7,8 +7,29 @@
to { transform: rotate(360deg); }
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(4px); }
to { opacity: 1; transform: translateY(0); }
}
.investigation-card {
animation: fadeIn 0.4s ease-out both;
}
.investigation-card:nth-child(2) {
animation-delay: 0.08s;
}
.investigation-card:nth-child(3) {
animation-delay: 0.16s;
}
@media (prefers-reduced-motion: reduce) {
[style*="animation:spin"] {
animation: none !important;
}
.investigation-card {
animation: none;
}
}