Reworked tree

This commit is contained in:
Magnus Åhall 2025-07-04 16:40:13 +02:00
parent c0255fadb8
commit a6bb845c9d
9 changed files with 314 additions and 117 deletions

View file

@ -65,8 +65,20 @@ body {
}
#editor-node {
grid-area: details;
display: grid;
grid-gap: 16px;
grid-template-rows: min-content 1fr min-content;
}
#editor-node.show {
display: grid;
}
#editor-node > div.ops {
display: grid;
grid-template-columns: min-content 1fr min-content;
align-items: center;
grid-gap: 8px;
}
#editor-node > div.ops #editor-node-name {
font-weight: bold;
}
#types {
grid-area: navigation;