Not sure what I am facing here, but I am trying to apply CSS animation.
After doing some reseach, I thought adding webkit
prefix will help the solution, but it looks like I am still facing issue where it is reading invalid property value.
Here's my current code:
.progress-status.complete {
width: 0%;
-webkit-animation: slideAll 2s ease-in-out infinite;
animation: slideAll 9s ease-in-out infinite;
}
@-webkit-keyframes slideAll {
from {
width: 0%;
}
to {
width: 100%
}
}
@keyframes slideAll {
from {
width: 0%;
}
to {
width: 100%
}
}
I am compiling this via Webpack, so could that possibly the issue with css-loader?