faster bllinking

This commit is contained in:
Adrien MALINGREY 2023-11-13 08:17:38 +01:00
parent c1d6fb87eb
commit ea2463157f

View File

@ -109,7 +109,7 @@ td {
}
.locking.mino {
animation: blinker 0.1s step-start infinite;
animation: blinker 0.04s step-start infinite;
}
.ghost.mino {
@ -118,4 +118,14 @@ td {
.locked.mino {
animation: none;
}
@keyframes cleared-line-animation {
from {
background-color: rgb(206, 255, 255, 40%);
filter: saturate(50%) brightness(300%);
}
to {
background-color: transparent;
}
}