feat: animate realtime recent tickets panel

Co-authored-by: factory-droid[bot] <138933559+factory-droid[bot]@users.noreply.github.com>
This commit is contained in:
esdrasrenan 2025-10-05 02:27:39 -03:00
parent de7314cff1
commit 9b16f3cd1e
2 changed files with 58 additions and 5 deletions

View file

@ -137,4 +137,19 @@
.rich-text h3 { @apply text-base font-semibold my-2; }
.rich-text code { @apply rounded bg-muted px-1 py-0.5 text-xs; }
.rich-text pre { @apply my-3 overflow-x-auto rounded bg-muted p-3 text-xs; }
@keyframes recent-ticket-enter {
0% {
opacity: 0;
transform: translateY(-12px);
}
100% {
opacity: 1;
transform: translateY(0);
}
}
.recent-ticket-enter {
animation: recent-ticket-enter 0.45s ease-out;
}
}