Changes cursor animation to start at default solid/expanded state.

This commit is contained in:
sprinkle131313 2016-08-29 05:22:46 -04:00
parent c67efdad23
commit 436b579b8d

View file

@ -59,33 +59,33 @@
@keyframes cursor-smooth {
0%,
20% {
opacity: 0;
opacity: 1;
}
60%,
100% {
opacity: 1;
opacity: 0;
}
}
@keyframes cursor-phase {
0%,
20% {
opacity: 0;
opacity: 1;
}
90%,
100% {
opacity: 1;
opacity: 0;
}
}
@keyframes cursor-expand {
0%,
20% {
transform: scaleY(0);
transform: scaleY(1);
}
80%,
100% {
transform: scaleY(1);
transform: scaleY(0);
}
}