Fix rendering on webkit

This commit is contained in:
damii 2024-11-17 22:15:46 +11:00
parent 38763aff09
commit 69dbd9fa7b
13 changed files with 252 additions and 282 deletions

View file

@ -18,18 +18,18 @@
@keyframes pulseGreen {
0% {
background-color: hsl(var(--blue) 85 35 / 0.1);
color: hsl(var(--blue) 100 69 / 1.0);
background-color: hsl(var(--blue) 85% 35% / 0.1);
color: hsl(var(--blue) 100% 69% / 1);
}
50% {
background-color: hsl(var(--green) 85 35 / 0.5);
color: hsl(var(--green) 100 69 / 1.0);
background-color: hsl(var(--green) 85% 35% / 0.5);
color: hsl(var(--green) 100% 69% / 1);
}
100% {
background-color: hsl(var(--blue) 85 35 / 0.1);
color: hsl(var(--blue) 100 69 / 1.0);
background-color: hsl(var(--blue) 85% 35% / 0.1);
color: hsl(var(--blue) 100% 69% / 1);
}
}