fix(06-04): add global pulse keyframe and drop redundant spin redefinition

- Add @keyframes pulse (0%,100% opacity:1; 50% opacity:0.4) to tokens.css after @keyframes spin
- Remove redundant local <style> block redefining @keyframes spin from PushPermissionPrompt.tsx
- LiveSyncIndicator reconnecting dot now resolves its pulse animation from the global stylesheet
- PushPermissionPrompt spinner continues to work via the existing global spin keyframe
This commit is contained in:
Lucas Berger
2026-06-10 11:23:01 -04:00
parent 0c2c26c375
commit 81f2678987
2 changed files with 9 additions and 7 deletions
+9
View File
@@ -145,3 +145,12 @@
transform: rotate(360deg);
}
}
@keyframes pulse {
0%, 100% {
opacity: 1;
}
50% {
opacity: 0.4;
}
}