From 6e936ecce35d441ef8a48d84f91539fc14fd9561 Mon Sep 17 00:00:00 2001 From: Tyler Koenig Date: Tue, 30 Jun 2026 21:12:00 -0400 Subject: [PATCH] style(tui): adjust monitor/detail split to 60/40 Gives monitors panel more room for columns while detail sidebar content stacks vertically and doesn't need the extra width. --- internal/tui/view_dashboard.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/tui/view_dashboard.go b/internal/tui/view_dashboard.go index bdcde86..9b33d5e 100644 --- a/internal/tui/view_dashboard.go +++ b/internal/tui/view_dashboard.go @@ -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