inverted the hard caret flash animation to make it show up as soon as words input is focused

This commit is contained in:
Jack 2021-04-05 00:06:53 +01:00
parent db950750c6
commit fe76caa37c

View file

@ -1496,12 +1496,12 @@ a:hover {
@keyframes caretFlashHard {
0%,
50% {
opacity: 0;
opacity: 1;
}
51%,
100% {
opacity: 1;
opacity: 0;
}
}