From 1c4ac02db563e86bfe1f31f1cc9bd26b685c5050 Mon Sep 17 00:00:00 2001 From: Alex Grozav Date: Fri, 27 Oct 2023 14:32:23 +0300 Subject: [PATCH] fix(editor): Fix executions sidebar height (no-changelog) (#6909) image --- .../src/components/ExecutionsView/ExecutionsSidebar.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/editor-ui/src/components/ExecutionsView/ExecutionsSidebar.vue b/packages/editor-ui/src/components/ExecutionsView/ExecutionsSidebar.vue index 2677c7262..7469a77a1 100644 --- a/packages/editor-ui/src/components/ExecutionsView/ExecutionsSidebar.vue +++ b/packages/editor-ui/src/components/ExecutionsView/ExecutionsSidebar.vue @@ -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;