7
7
transform : translateY (-10px ) !important ;
8
8
}
9
9
10
- .fade-down-enter-active , .fade-down-leave-active {
11
- transition : all 0.25s ;
12
- transition-timing-function : cubic-bezier (0.14 , 0.7 , 0.56 , 0.92 );
13
- }
14
- .fade-down-enter-from , .fade-down-leave-to {
15
- opacity : 0 ;
16
- transform : translateY (10px ) !important ;
17
- }
18
-
19
- .fade-slow-enter-active , .fade-slow-leave-active {
20
- transition : all 1.25s ;
21
- transition-timing-function : cubic-bezier (0.14 , 0.7 , 0.56 , 0.92 );
22
- transition-delay : 0.3s ;
23
- animation-fill-mode : forwards;
24
- }
25
- .fade-slow-enter-from , .fade-slow-leave-to {
26
- opacity : 0 ;
27
- transform : translateY (-10px ) !important ;
28
- }
29
-
30
10
.opacity-enter-active , .opacity-leave-active {
31
11
transition : opacity 0.25s ;
32
12
transition-timing-function : cubic-bezier (0.14 , 0.7 , 0.56 , 0.92 );
33
13
}
34
14
.opacity-enter-from , .opacity-leave-to {
35
15
opacity : 0 ;
36
16
}
37
- .opacity-slide-enter-active , .opacity-slide-leave-active {
38
- transition : opacity 0.25s , margin-bottom 0.1s ;
39
- transition-timing-function : cubic-bezier (0.14 , 0.7 , 0.56 , 0.92 );
40
- }
41
- .opacity-slide-enter-from , .opacity-slide-leave-to {
42
- opacity : 0 ;
43
- margin-bottom : -4.35rem ;
44
- }
45
-
46
- .list-enter-active , .list-leave-active {
47
- transition : opacity 0.25s , transform 0.25s ;
48
- transition-timing-function : cubic-bezier (0.14 , 0.7 , 0.56 , 0.92 );
49
- }
50
-
51
- .list-enter-from , .list-leave-to {
52
- opacity : 0 ;
53
- transform : translateX (10px ) !important ;
54
- }
55
-
56
- .list-move {
57
- transition : transform 0.2s cubic-bezier (0.14 , 0.7 , 0.56 , 0.92 );
58
- }
59
-
60
- .list-leave-active {
61
- position : absolute;
62
- }
0 commit comments