fix: reconnect on ws failure

This commit is contained in:
Evan Carroll 2026-01-18 23:12:24 -06:00
parent 84cb4e5e78
commit 27b3658e1d
5 changed files with 430 additions and 3 deletions

View file

@ -75,4 +75,14 @@
.error-message {
@apply p-4 bg-red-900/50 border border-red-500 rounded-lg text-red-200;
}
/* Reconnection overlay spinner animation */
.reconnect-spinner {
animation: reconnect-pulse 1.5s ease-in-out infinite;
}
}
@keyframes reconnect-pulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.5; }
}