We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1c806fd commit 255e0f8Copy full SHA for 255e0f8
1 file changed
src/lib/components/dialogs/BlockPropertiesDialog.svelte
@@ -420,6 +420,9 @@
420
/>
421
</div>
422
{/each}
423
+ {#if node.inputs.length > 0 && node.outputs.length > 0}
424
+ <div class="port-divider"></div>
425
+ {/if}
426
{#each node.outputs as port, i (port.id)}
427
<div class="param-item">
428
<label for="port-out-{i}">out {i}</label>
@@ -520,6 +523,12 @@
520
523
min-width: 0;
521
524
}
522
525
526
+ .port-divider {
527
+ height: 1px;
528
+ background: var(--border);
529
+ margin: 4px 0;
530
+ }
531
+
532
/* Pin button */
533
.pin-btn {
534
flex-shrink: 0;
0 commit comments