Seems like if there is 2 animations given it doesn't correctly replace second animations name. animation: a 1s, b 1s; -> animation: a-ltr 1s, b 1s; notice how b is missing -ltr
.loader {
animation: load6 1.7s infinite ease, spinner 1.7s infinite ease;
}
@keyframes load6 {
...
}
@keyframes spinner {
...
}
The output is
[dir=ltr] ._26uJz {
animation: _1kAQA-ltr 1.7s ease infinite,c7O-P 1.7s ease infinite;
}
@keyframes _1kAQA-ltr {
...
}
@keyframes c7O-P-ltr {
...
}