Skip to content

Commit

Permalink
fix(editor): Fix DNV header disappearing when scrolling the code edit…
Browse files Browse the repository at this point in the history
…or content (#6459)

* fix(editor): Fix DNV header disappearing when scrolling the code editor content
* ⚡ Using flex to lay out NDV instead of hard-coded height values
  • Loading branch information
MiloradFilipovic authored and netroy committed Jun 19, 2023
1 parent a1c4c24 commit ed3ee02
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/editor-ui/src/components/NodeSettings.vue
Original file line number Diff line number Diff line change
Expand Up @@ -926,6 +926,8 @@ export default defineComponent({

<style lang="scss">
.node-settings {
display: flex;
flex-direction: column;
overflow: hidden;
background-color: var(--color-background-xlight);
height: 100%;
Expand Down Expand Up @@ -958,7 +960,6 @@ export default defineComponent({
}
.node-parameters-wrapper {
height: 100%;
overflow-y: auto;
padding: 0 20px 200px 20px;
}
Expand Down

0 comments on commit ed3ee02

Please sign in to comment.