15 lines
269 B
CSS
15 lines
269 B
CSS
|
|
@utility animate-fill-none {
|
||
|
|
animation-fill-mode: none;
|
||
|
|
}
|
||
|
|
|
||
|
|
@utility animate-fill-forwards {
|
||
|
|
animation-fill-mode: forwards;
|
||
|
|
}
|
||
|
|
|
||
|
|
@utility animate-fill-backwards {
|
||
|
|
animation-fill-mode: backwards;
|
||
|
|
}
|
||
|
|
|
||
|
|
@utility animate-fill-both {
|
||
|
|
animation-fill-mode: both;
|
||
|
|
}
|