feat(agent): Enhance agent components with new actions and improve loading animations

This commit is contained in:
Willie Zutz 2025-06-26 23:53:52 -06:00
parent 2805417307
commit 7b47d3dacb
9 changed files with 166 additions and 79 deletions

View file

@ -11,3 +11,17 @@
display: none;
}
}
@layer utilities {
@keyframes high-bounce {
0%,
100% {
transform: translateY(0);
animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
}
50% {
transform: translateY(-9px);
animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
}
}