gradle-css-plugin icon indicating copy to clipboard operation
gradle-css-plugin copied to clipboard

Major problem with keyframes and 0% and animation 0s

Open Julieng50 opened this issue 7 years ago • 1 comments

Hi ! Using minifyCss :

@keyframes bug-example {
  0% { ... }
  100%{ ... }
}

is converting to :

@keyframes bug-example {
  0 { ... }
  100%{ ... }
}

But "0" in keyframes is ignored by firefox

Julieng50 avatar Sep 19 '17 13:09 Julieng50

Same for animation: stroke .5s forwards 0s;

converted to : animation: stroke .5s forwards 0;

This should not happened

Julieng50 avatar Sep 19 '17 14:09 Julieng50