summaryrefslogtreecommitdiffhomepage
path: root/internal/tui/layout
diff options
context:
space:
mode:
Diffstat (limited to 'internal/tui/layout')
-rw-r--r--internal/tui/layout/container.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/tui/layout/container.go b/internal/tui/layout/container.go
index 75c0fe110..f960bd5f3 100644
--- a/internal/tui/layout/container.go
+++ b/internal/tui/layout/container.go
@@ -31,7 +31,7 @@ type container struct {
borderBottom bool
borderLeft bool
borderStyle lipgloss.Border
-
+
focused bool // Track focus state
}
@@ -69,7 +69,7 @@ func (c *container) View() string {
width--
}
style = style.Border(c.borderStyle, c.borderTop, c.borderRight, c.borderBottom, c.borderLeft)
-
+
// Use primary color for border if focused
if c.focused {
style = style.BorderBackground(t.Background()).BorderForeground(t.Primary())