mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-03 00:09:39 +08:00
f88bd4d2af
* refactor: Move theme related variables * chore: move rest motion * chore: trigger CI * chore: steps by steps * chore: back order * docs: Update docs
23 lines
577 B
Plaintext
23 lines
577 B
Plaintext
// @import '../mixins/motion'; This has moved to theme/xxx inside.
|
|
@import 'motion/fade';
|
|
@import 'motion/move';
|
|
@import 'motion/other';
|
|
@import 'motion/slide';
|
|
@import 'motion/zoom';
|
|
|
|
// For common/openAnimation
|
|
.ant-motion-collapse-legacy {
|
|
overflow: hidden;
|
|
|
|
&-active {
|
|
transition: height @animation-duration-base @ease-in-out,
|
|
opacity @animation-duration-base @ease-in-out !important;
|
|
}
|
|
}
|
|
|
|
.ant-motion-collapse {
|
|
overflow: hidden;
|
|
transition: height @animation-duration-base @ease-in-out,
|
|
opacity @animation-duration-base @ease-in-out !important;
|
|
}
|