Pre UX polish

This commit is contained in:
2026-02-18 00:23:35 +00:00
parent 836305e2a3
commit 62c0d2ea19
13 changed files with 262 additions and 376 deletions
+18
View File
@@ -226,6 +226,18 @@ html {
}
}
/* Live pill pulse — gentle glow throb */
@keyframes live-pill-pulse {
0%, 100% {
opacity: 1;
box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.2);
}
50% {
opacity: 0.8;
box-shadow: 0 0 6px 2px rgba(34, 197, 94, 0.15);
}
}
/* Login spinner */
@keyframes login-spin {
to { transform: rotate(360deg); }
@@ -681,6 +693,12 @@ textarea:focus-visible {
animation: none;
}
/* Static live pill */
.live-pill {
animation: none !important;
box-shadow: none !important;
}
/* Instant smooth scroll override */
html {
scroll-behavior: auto;