mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-03 04:30:06 +08:00
Add prefix to keyframes
This commit is contained in:
parent
7a6f190e9e
commit
4897b4d3f5
@ -101,21 +101,21 @@
|
||||
}
|
||||
|
||||
.@{upload-prefix-cls}-margin-top-enter {
|
||||
animation: marginTopIn .3s @ease-in-out-circ;
|
||||
animation: uploadMarginTopIn .3s @ease-in-out-circ;
|
||||
}
|
||||
|
||||
.@{upload-prefix-cls}-margin-top-leave {
|
||||
animation: marginTopOut .3s @ease-in-out-circ;
|
||||
animation: uploadMarginTopOut .3s @ease-in-out-circ;
|
||||
}
|
||||
|
||||
@keyframes marginTopIn {
|
||||
@keyframes uploadMarginTopIn {
|
||||
from {
|
||||
margin-top: -25px;
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes marginTopOut {
|
||||
@keyframes uploadMarginTopOut {
|
||||
to {
|
||||
margin-top: -25px;
|
||||
opacity: 0;
|
||||
|
Loading…
Reference in New Issue
Block a user