Spaces:
Running
Running
DISABLE login animation completely + force cache bust
Browse files- Completely commented out all animation CSS for .tt-login-container
- Updated service worker VERSION to force cache invalidation
- This should immediately fix the zoom/growth effect on login page refresh
- static/css/design-system.css +4 -3
- static/sw.js +1 -1
static/css/design-system.css
CHANGED
@@ -699,9 +699,10 @@ a:focus {
|
|
699 |
padding: var(--space-8);
|
700 |
width: 100%;
|
701 |
max-width: 420px;
|
702 |
-
|
703 |
-
animation-
|
704 |
-
animation-
|
|
|
705 |
}
|
706 |
|
707 |
@keyframes tt-slideIn {
|
|
|
699 |
padding: var(--space-8);
|
700 |
width: 100%;
|
701 |
max-width: 420px;
|
702 |
+
/* Animation disabled to prevent zoom/growth effect */
|
703 |
+
/* animation: tt-slideIn 0.6s ease-out; */
|
704 |
+
/* animation-fill-mode: both; */
|
705 |
+
/* animation-iteration-count: 1; */
|
706 |
}
|
707 |
|
708 |
@keyframes tt-slideIn {
|
static/sw.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
// TreeTrack Service Worker - PWA and Offline Support
|
2 |
-
const VERSION =
|
3 |
const CACHE_NAME = `treetrack-v${VERSION}`;
|
4 |
const STATIC_CACHE = `static-v${VERSION}`;
|
5 |
const API_CACHE = `api-v${VERSION}`;
|
|
|
1 |
// TreeTrack Service Worker - PWA and Offline Support
|
2 |
+
const VERSION = 1734825737; // Cache busting - updated for login animation fix
|
3 |
const CACHE_NAME = `treetrack-v${VERSION}`;
|
4 |
const STATIC_CACHE = `static-v${VERSION}`;
|
5 |
const API_CACHE = `api-v${VERSION}`;
|