fix bug safari #69

Merged
davish merged 1 commits from main into staging 2026-08-01 22:06:24 +00: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;
}