Sass error throwed when compile this:
@keyframes flipInX
from
transform: perspective(400px) rotate3d(1, 0, 0, 90deg)
animation-timing-function: ease-in
opacity: 0
40%
transform: perspective(400px) rotate3d(1, 0, 0, -20deg)
animation-timing-function: ease-in
60%
opacity: 1
transform: perspective(400px) rotate3d(1, 0, 0, 10deg)
80%
transform: perspective(400px) rotate3d(1, 0, 0, -5deg)
to
transform: perspective(400px)
The error points to this line:
...
80%
transform: perspective(400px) rotate3d(1, 0, 0, -5deg)
to
...
This error was throwed in past in different places and disappeared after switching lines or retyping tabs and/or new line typing. This seems like a bug and this is very annoying. How i can fix this?
P.S. I am working in Sublime Text 3 if it can help...