diff options
| author | Paul Buetow <paul@buetow.org> | 2026-02-26 09:47:28 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-02-26 09:47:28 +0200 |
| commit | 81ffb947201690088ef25a1839a8993bbfc27f03 (patch) | |
| tree | 948400add2b7df214c1587f04fe4ec9bd51c439a /internal/tui/common | |
| parent | ad4d7fca20d80f71ccabef3281e3f80081f4db62 (diff) | |
tui: fix responsive layout and stream viewport chrome
Diffstat (limited to 'internal/tui/common')
| -rw-r--r-- | internal/tui/common/styles.go | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/internal/tui/common/styles.go b/internal/tui/common/styles.go index ed6a191..d4c75ff 100644 --- a/internal/tui/common/styles.go +++ b/internal/tui/common/styles.go @@ -16,8 +16,7 @@ var ( var ( // ScreenStyle is the base style for full-screen models. ScreenStyle = lipgloss.NewStyle(). - Foreground(ColorText). - Background(ColorBackground) + Foreground(ColorText) // HeaderStyle is used by top-level titles and screen headers. HeaderStyle = lipgloss.NewStyle(). @@ -34,7 +33,6 @@ var ( // TabInactiveStyle is applied to non-selected tabs. TabInactiveStyle = lipgloss.NewStyle(). Foreground(ColorMuted). - Background(ColorPanel). Padding(0, 1) // PanelStyle is used for boxed sections. |
