feat(editor): Refactor and unify executions views (no-changelog) (#8538)

This commit is contained in:
Alex Grozav
2024-04-19 07:50:18 +02:00
committed by GitHub
parent eab01876ab
commit a3eea3ac5e
65 changed files with 3601 additions and 2960 deletions

View 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;
}

View File

@@ -0,0 +1,3 @@
@import 'variables';
@import 'plugins';
@import 'animations';