fix: Wrap home screen content in scrollable to prevent UI overflow

This commit is contained in:
2026-05-27 15:49:51 -04:00
parent a503a4c2eb
commit 789a2fa3ed
+4 -2
View File
@@ -441,11 +441,13 @@ fn view(state: &AppState) -> Element<'_, AppMessage> {
.padding(30)
.width(420);
let scroll = scrollable(content);
container(
column![
top_bar,
vertical_space(40.0),
content
vertical_space(20.0),
scroll
].align_x(iced::alignment::Horizontal::Center)
)
.width(iced::Length::Fill)