- Sidebar (250px, resizable): navigation placeholder - Note list (300px, resizable): displays vault entries from scan - Editor (flex grow): placeholder for CodeMirror 6 - Inspector (280px, collapsible): properties/relationships placeholder - Resizable panels with drag handles - Calls list_vault on app load and displays results in note list Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
24 lines
308 B
CSS
24 lines
308 B
CSS
.editor {
|
|
background: #0f0f1a;
|
|
color: #e0e0e0;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
flex: 1;
|
|
min-width: 0;
|
|
}
|
|
|
|
.editor__placeholder {
|
|
text-align: center;
|
|
color: #555;
|
|
}
|
|
|
|
.editor__placeholder p {
|
|
margin: 8px 0;
|
|
}
|
|
|
|
.editor__hint {
|
|
font-size: 12px;
|
|
color: #444;
|
|
}
|