chore(tui): visual polish — detail sections, column headers, alert detail #37

Merged
lerko merged 20 commits from chore/ux-polish into main 2026-05-28 20:40:29 +00:00
Showing only changes of commit 217276ca18 - Show all commits
+3 -2
View File
@@ -360,8 +360,9 @@ func (m Model) computeLayout() tableLayout {
{"RT", "RETRIES", 5, 9},
}
overhead := 30
usable := m.termWidth - chromePadH - 2 - overhead
numCols := len(cols)
borderOverhead := 2 + (numCols - 1) // left + right border + column separators
usable := m.termWidth - chromePadH - 2 - borderOverhead
if usable < 80 {
usable = 80
}