feat: category menus

This commit is contained in:
2026-02-21 21:41:41 +01:00
parent c7123a142a
commit e1d470a44a
14 changed files with 547 additions and 31 deletions

View File

@@ -29,12 +29,16 @@
}
.menu-editor-main {
display: block;
display: flex;
flex-direction: column;
min-height: 0;
flex: 1;
}
.menu-editor-tree-wrap {
display: flex;
flex-direction: column;
flex: 1;
border: 1px solid var(--vscode-panel-border);
border-radius: 6px;
background: var(--vscode-editor-background);
@@ -42,6 +46,11 @@
min-height: 0;
}
.menu-editor-tree-wrap [role='tree'] {
flex: 1;
min-height: 0;
}
.menu-editor-toolbar {
display: flex;
align-items: center;