I can save form (but user interaction is broken)

This commit is contained in:
2025-08-04 18:36:28 +02:00
parent e74639c042
commit c2fcfbb2ab
3 changed files with 111 additions and 19 deletions

View File

@@ -128,6 +128,24 @@
top: 1px;
}
.wkf-properties-content {
display: flex;
flex-direction: column;
height: 100%; /* or inherit from a fixed-height parent */
}
.wkf-properties-content-header {
flex-shrink: 0; /* optional: prevent it from shrinking */
}
.wkf-properties-content-form {
display: flex;
flex-direction: column;
flex-grow: 1;
overflow: hidden; /* prevent double scrollbars if needed */
}
.wkf-canvas {
position: relative;
box-sizing: border-box;
@@ -272,5 +290,3 @@
.wkf-connection-path-arrowhead-selected {
fill:#ef4444 !important;;
}