feat(editor): Refactor and unify executions views (no-changelog) (#8538)
This commit is contained in:
15
packages/editor-ui/src/styles/_animations.scss
Normal file
15
packages/editor-ui/src/styles/_animations.scss
Normal file
@@ -0,0 +1,15 @@
|
||||
.executions-list-move,
|
||||
.executions-list-enter-active,
|
||||
.executions-list-leave-active {
|
||||
transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
|
||||
}
|
||||
|
||||
.executions-list-enter-from,
|
||||
.executions-list-leave-to {
|
||||
opacity: 0;
|
||||
transform: translateX(-100px);
|
||||
}
|
||||
|
||||
.executions-list-leave-active {
|
||||
position: absolute;
|
||||
}
|
||||
3
packages/editor-ui/src/styles/index.scss
Normal file
3
packages/editor-ui/src/styles/index.scss
Normal file
@@ -0,0 +1,3 @@
|
||||
@import 'variables';
|
||||
@import 'plugins';
|
||||
@import 'animations';
|
||||
Reference in New Issue
Block a user