rsuite
Version:
A suite of react components
16 lines (13 loc) • 357 B
text/less
.animation-common(@timing) {
animation-duration: 0.3s;
animation-timing-function: @timing;
animation-fill-mode: forwards;
}
.slide-animation-setting(@move-in-animation-name,@move-out-animation-name) {
&.rs-anim-slide-in {
animation-name: @move-in-animation-name;
}
&.rs-anim-slide-out {
animation-name: @move-out-animation-name;
}
}