refactor(tui): consistent chrome across all views #61

Merged
lerko merged 7 commits from fix/tui-chrome-consistency into main 2026-06-04 20:26:50 +00:00
Showing only changes of commit cdb8c356e9 - Show all commits
+1 -1
View File
@@ -185,7 +185,7 @@ func (m Model) viewDashboard() string {
if contentHeight < 1 {
contentHeight = 1
}
paddedContent := lipgloss.NewStyle().Height(contentHeight).Render(content)
paddedContent := lipgloss.NewStyle().Height(contentHeight).MaxHeight(contentHeight).Render(content)
return outerPad.Render(lipgloss.JoinVertical(lipgloss.Top, header, paddedContent, footer))
}