Skip to content

Commit

Permalink
fix(editor): Set max width for executions list (#5302)
Browse files Browse the repository at this point in the history
  • Loading branch information
cstuncsik authored Feb 2, 2023
1 parent 0f228a6 commit 52dea08
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 2 deletions.
3 changes: 3 additions & 0 deletions packages/editor-ui/src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -241,9 +241,12 @@ export default mixins(showMessage, userHelpers, restApi, historyHelper).extend({
}
.content {
display: flex;
grid-area: content;
overflow: auto;
height: 100vh;
width: 100%;
justify-content: center;
}
.header {
Expand Down
2 changes: 2 additions & 0 deletions packages/editor-ui/src/components/ExecutionsList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -927,6 +927,8 @@ export default mixins(externalHooks, genericHelpers, executionHelpers, restApi,
grid-template-rows: 1fr 0;
position: relative;
height: 100%;
width: 100%;
max-width: 1280px;
}
.execList {
Expand Down
3 changes: 2 additions & 1 deletion packages/editor-ui/src/components/layouts/PageViewLayout.vue
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ export default Vue.extend({
.wrapper {
display: flex;
height: 100%;
width: 100%;
max-width: 1280px;
justify-content: center;
box-sizing: border-box;
background: var(--color-gray-light);
Expand All @@ -43,7 +45,6 @@ export default Vue.extend({
}
.container {
max-width: 1280px;
display: flex;
justify-content: center;
align-items: center;
Expand Down
3 changes: 2 additions & 1 deletion packages/editor-ui/src/views/NodeView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4055,7 +4055,8 @@ export default mixins(
position: relative;
display: flex;
overflow: auto;
height: 100vh;
height: 100%;
width: 100%;
}
.shake {
Expand Down

0 comments on commit 52dea08

Please sign in to comment.