fix: multi arg transition/animation duration (#2657)

This commit is contained in:
Niklas von Hertzen
2021-08-14 14:05:15 +08:00
committed by GitHub
parent 68377b3244
commit 1b55ed5668
4 changed files with 15 additions and 10 deletions

View File

@ -40,7 +40,7 @@
.animated.working p {
animation-name: rotate0;
animation-duration: 1ms;
animation-duration: 1ms, 1ms;
animation-play-state: paused;
}
@ -51,7 +51,7 @@
}
.transitioned p {
transition: 1ms;
transition: 1ms, 1ms;
transform: rotate(45deg)
}