From 9a16573effd81c2431fd41bc99df1214edf03e05 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sun, 1 Feb 2026 06:52:54 +0000 Subject: [PATCH] Initial upload: DevDash CLI with TUI dashboard --- src/ui/styles.tcss | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 src/ui/styles.tcss diff --git a/src/ui/styles.tcss b/src/ui/styles.tcss new file mode 100644 index 0000000..d49698f --- /dev/null +++ b/src/ui/styles.tcss @@ -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; +}