- Simplify CSS layout - Remove invalid CSS properties - Fix left panel not showing - Use simple dock layout
25 lines
324 B
CSS
25 lines
324 B
CSS
/* Global Styles for Graph Memory TUI */
|
|
|
|
GraphMemoryApp {
|
|
background: $surface;
|
|
color: $text;
|
|
}
|
|
|
|
LeftPanel {
|
|
width: 1fr;
|
|
dock: left;
|
|
}
|
|
|
|
RightPanel {
|
|
width: 40;
|
|
dock: right;
|
|
background: $panel;
|
|
}
|
|
|
|
StatusBar {
|
|
dock: bottom;
|
|
height: 1;
|
|
background: $primary;
|
|
color: $text-primary;
|
|
}
|