From 3518c03449eb6f4deb89583c2bcb250431c126ef Mon Sep 17 00:00:00 2001 From: Adam Mathes Date: Fri, 13 Feb 2026 20:31:27 -0800 Subject: feat(tui): modernize TUI layout with sidebar and keybindings (NK-gdf99z) --- tui/style.go | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'tui/style.go') diff --git a/tui/style.go b/tui/style.go index 7b21c78..0fbfa5a 100644 --- a/tui/style.go +++ b/tui/style.go @@ -40,4 +40,13 @@ var ( Foreground(gray). Italic(true). MarginTop(1) + + // Layout Styles + PaneStyle = lipgloss.NewStyle(). + Border(lipgloss.RoundedBorder()). + BorderForeground(gray). + Padding(0, 1) + + ActivePaneStyle = PaneStyle.Copy(). + BorderForeground(maroon) ) -- cgit v1.2.3