swc/crates/swc_css_prefixer/tests/fixture/keyframes/input.css
2022-03-25 19:46:45 +09:00

20 lines
331 B
CSS

@keyframes anim {
from {
top: calc(10% + 10px);
transform: rotate(10deg)
}
50% {
top: 0;
display: flex
}
to {
top: calc(10%);
transform: rotate(0)
}
}
@media screen {
@keyframes inside {}
}
@keyframes spaces { from { color: black } to { color: white } }