staging #72

Merged
esteban merged 10 commits from staging into production 2026-08-02 14:56:45 +00:00
1 changed files with 8 additions and 0 deletions
Showing only changes of commit d40969ba44 - Show all commits

View File

@ -95,6 +95,14 @@ const POLL_INTERVAL_MS = 10_000;
.countdown { .countdown {
font-variant-numeric: tabular-nums; 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 { .pulse-update {
animation: counter-pulse 0.5s ease-out; animation: counter-pulse 0.5s ease-out;
} }