fix(editor): Fix executions sidebar height (no-changelog) (#6909)

<img width="1397" alt="image"
src="https://github.com/n8n-io/n8n/assets/6179477/cb142085-3b21-4e18-9f0d-92c5c4018578">
This commit is contained in:
Alex Grozav 2023-10-27 14:32:23 +03:00 committed by GitHub
parent 07857e78a9
commit 1c4ac02db5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -204,6 +204,8 @@ export default defineComponent({
border-right: var(--border-base);
padding: var(--spacing-l) 0 var(--spacing-l) var(--spacing-l);
z-index: 1;
display: flex;
flex-direction: column;
overflow: hidden;
}
@ -228,7 +230,7 @@ export default defineComponent({
}
.executionList {
height: calc(100% - 10.5em);
flex: 1;
overflow: auto;
margin-bottom: var(--spacing-m);
background-color: var(--color-background-xlight) !important;