Initial upload: DevDash CLI with TUI dashboard
Some checks failed
CI / test (push) Has been cancelled

This commit is contained in:
2026-02-01 06:52:54 +00:00
parent 0b0cb4d9d5
commit 9a16573eff

43
src/ui/styles.tcss Normal file
View File

@@ -0,0 +1,43 @@
Screen {
background: $surface;
}
Static {
color: $text;
}
#header {
dock: top;
height: 3;
background: $accent;
color: $text;
}
#footer {
dock: bottom;
height: 1;
background: $surface-darken-1;
color: $text-muted;
}
DashboardPanel {
border: solid $accent;
padding: 1;
height: 100%;
}
PullRequestCard {
border: solid $surface-lighten-1;
padding: 1;
margin: 0 0 1 0;
}
IssueCard {
border: solid $surface-lighten-1;
padding: 1;
margin: 0 0 1 0;
}
StatusIndicator {
dock: right;
}