From 79468c65b68c28e1539acf0a2a14bd42e000e365 Mon Sep 17 00:00:00 2001 From: Georg Bauer Date: Sun, 30 Aug 2026 13:25:45 +0200 Subject: [PATCH] Expand detail views with the sidebar hidden --- src/app/view/chat.rs | 3 +-- src/app/view/stats.rs | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/src/app/view/chat.rs b/src/app/view/chat.rs index de5c5a6..1411034 100644 --- a/src/app/view/chat.rs +++ b/src/app/view/chat.rs @@ -396,8 +396,7 @@ impl App { .height(Length::Fill) .spacing(8); container(conversation) - .max_width(860) - .center_x(Length::Fill) + .width(Length::Fill) .height(Length::Fill) .into() } else { diff --git a/src/app/view/stats.rs b/src/app/view/stats.rs index 982219c..89feaff 100644 --- a/src/app/view/stats.rs +++ b/src/app/view/stats.rs @@ -591,8 +591,7 @@ impl App { .spacing(12), ) .padding(24) - .max_width(960) - .center_x(Length::Fill), + .width(Length::Fill), ) .height(Length::Fill) .into()