gradle-css-plugin
gradle-css-plugin copied to clipboard
Major problem with keyframes and 0% and animation 0s
Hi ! Using minifyCss :
@keyframes bug-example {
0% { ... }
100%{ ... }
}
is converting to :
@keyframes bug-example {
0 { ... }
100%{ ... }
}
But "0" in keyframes is ignored by firefox
Same for
animation: stroke .5s forwards 0s;
converted to :
animation: stroke .5s forwards 0;
This should not happened