Merge pull request 'fix bug safari' (#69) from main into staging
Deploy cdrdpyj / deploy (push) Successful in 40s Details

Reviewed-on: #69
This commit is contained in:
davish 2026-08-01 22:06:24 +00:00
commit 470f0f389c
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;
}