locked animation

This commit is contained in:
2023-06-16 00:06:49 +02:00
parent 70d8e6e0aa
commit d615b6b72b
2 changed files with 18 additions and 5 deletions

View File

@ -56,4 +56,17 @@ body {
-1px 1px 4px rgba(186, 211, 255, 27%),
1px -1px 4px rgba(186, 211, 255, 27%),
1px 1px 4px rgba(186, 211, 255, 27%);
}
@keyframes locked-animation {
from {
opacity: 1;
background: white;
border-color: white;
}
}
.locked.mino {
animation: locked-animation;
animation-duration: 0.2s;
}