Skip to content

Commit f6008b8

Browse files
committed
fix(editor): Faster animation for items leaving execution list
1 parent 7a5ac0a commit f6008b8

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed
Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,18 @@
11
.executions-list-move,
2-
.executions-list-enter-active,
3-
.executions-list-leave-active {
2+
.executions-list-enter-active {
43
transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
54
}
65

7-
.executions-list-enter-from,
8-
.executions-list-leave-to {
6+
.executions-list-leave-active {
7+
transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
8+
position: absolute;
9+
}
10+
11+
.executions-list-enter-from {
912
opacity: 0;
1013
transform: translateX(-100px);
1114
}
1215

13-
.executions-list-leave-active {
14-
position: absolute;
16+
.executions-list-leave-to {
17+
opacity: 0;
1518
}

0 commit comments

Comments
 (0)