improved button loading animation

This commit is contained in:
miloschwartz
2025-12-23 12:51:38 -05:00
parent da112d3417
commit 77117e48e3
2 changed files with 43 additions and 5 deletions

View File

@@ -162,3 +162,20 @@ p {
#nprogress .bar {
background: var(--color-primary) !important;
}
@keyframes dot-pulse {
0%, 80%, 100% {
opacity: 0.3;
transform: scale(0.8);
}
40% {
opacity: 1;
transform: scale(1);
}
}
@layer utilities {
.animate-dot-pulse {
animation: dot-pulse 1.4s ease-in-out infinite;
}
}