style(tui): adjust monitor/detail split to 60/40
CI / test (pull_request) Successful in 1m49s
CI / lint (pull_request) Successful in 1m17s
CI / vulncheck (pull_request) Successful in 56s

Gives monitors panel more room for columns while detail sidebar
content stacks vertically and doesn't need the extra width.
This commit was merged in pull request #165.
This commit is contained in:
2026-06-30 21:12:00 -04:00
parent 04cf12f52b
commit 6e936ecce3
+1 -1
View File
@@ -161,7 +161,7 @@ func (m Model) viewMonitorsLayout() string {
}
remaining := availW - maintW
if showDetail {
monW = remaining * 45 / 100
monW = remaining * 60 / 100
detailW = remaining - monW
} else {
monW = remaining