-
Notifications
You must be signed in to change notification settings - Fork 4
Open
Labels
bugSomething isn't workingSomething isn't working
Description
The component style does not support the short definition like:
<style>
.my-class {
animation: 1s blink ease infinite;
}
</style>this works:
<style>
.my-class {
animation-name: blink;
animation-duration: 1s;
animation-timing-function: ease;
animation-iteration-count: infinite;
}
</style>Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working