Compare commits

...

2 Commits

Author SHA1 Message Date
davish 470f0f389c Merge pull request 'fix bug safari' (#69) from main into staging
Deploy cdrdpyj / deploy (push) Successful in 40s Details
Reviewed-on: #69
2026-08-01 22:06:24 +00:00
David Ascanio d40969ba44 fix bug safari 2026-08-01 19:05:22 -03:00
1 changed files with 8 additions and 0 deletions

View File

@ -95,6 +95,14 @@ const POLL_INTERVAL_MS = 10_000;
.countdown {
font-variant-numeric: tabular-nums;
}
/* Fix para Safari/iOS: sin esto, las dos capas del dígito (actual y
siguiente) no quedan recortadas ni aisladas y se ven superpuestas. */
.countdown > * {
overflow: clip;
isolation: isolate;
-webkit-transform: translateZ(0);
transform: translateZ(0);
}
.pulse-update {
animation: counter-pulse 0.5s ease-out;
}