mirror of
https://github.com/n8n-io/n8n.git
synced 2025-02-21 02:56:40 -08:00
fix(editor): Set max width for executions list (#5302)
This commit is contained in:
parent
0f228a60ba
commit
52dea08003
|
@ -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 {
|
||||
|
|
|
@ -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 {
|
||||
|
|
|
@ -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);
|
||||
|
@ -43,7 +45,6 @@ export default Vue.extend({
|
|||
}
|
||||
|
||||
.container {
|
||||
max-width: 1280px;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
|
|
|
@ -4055,7 +4055,8 @@ export default mixins(
|
|||
position: relative;
|
||||
display: flex;
|
||||
overflow: auto;
|
||||
height: 100vh;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.shake {
|
||||
|
|
Loading…
Reference in a new issue