fix(editor): Fix DNV header disappearing when scrolling the code editor 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
This commit is contained in:
Milorad FIlipović 2023-06-16 15:35:56 +02:00 committed by GitHub
parent 3e5f7adcbf
commit ad9fd12615
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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