15 lines
346 B
CSS
15 lines
346 B
CSS
@utility animate-ease-linear {
|
|
animation-timing-function: linear;
|
|
}
|
|
|
|
@utility animate-ease-in {
|
|
animation-timing-function: cubic-bezier(0.4, 0, 1, 1);
|
|
}
|
|
|
|
@utility animate-ease-out {
|
|
animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
|
}
|
|
|
|
@utility animate-ease-in-out {
|
|
animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
} |