multiple fixes staging #76

Closed
esteban wants to merge 32 commits from staging into main
1 changed files with 8 additions and 0 deletions
Showing only changes of commit 470f0f389c - 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;
} }