Fix input wrap

This commit is contained in:
barsdeveloper
2023-01-30 21:39:31 +01:00
parent cc82c1f6fe
commit 8de12775a7
18 changed files with 282 additions and 135 deletions

View File

@@ -147,11 +147,15 @@ ueb-node[data-pure-function="true"] .ueb-node-name-symbol {
.ueb-node-content {
display: flex;
padding: 6px 0 2px 0;
padding: 2px 0;
font-weight: 100;
white-space: nowrap;
}
.ueb-node-style-default .ueb-node-content {
padding-top: 5px;
}
.ueb-node-has-inputs .ueb-node-inputs {
padding-left: 8px;
}
@@ -222,6 +226,7 @@ ueb-node[data-advanced-display="Shown"] .ueb-node-expansion>svg {
ueb-node.ueb-node-style-glass .ueb-node-wrapper,
ueb-node.ueb-node-style-glass .ueb-node-border,
ueb-node.ueb-node-style-glass {
min-width: 128px;
border-radius: 15px;
}

View File

@@ -17,6 +17,10 @@ ueb-pin {
min-height: 30px;
}
ueb-pin.ueb-pin-input-wrap .ueb-pin-input {
display: block;
}
.ueb-node-top ueb-pin {
min-height: 0;
}