various fixes

This commit is contained in:
Ashley Wulber 2024-01-31 23:17:16 -05:00 committed by Ashley Wulber
parent a6785de7ba
commit dbcd927d4b
7 changed files with 110 additions and 110 deletions

View file

@ -288,6 +288,7 @@ impl Window {
)
.padding([20, 24]),
)
.width(Length::Fill)
.padding(0)
.style(theme::iced::Button::Transparent)
.on_press(Message::from(sub_page.into_page()))
@ -565,11 +566,11 @@ impl Application for Window {
};
widgets.push(
scrollable(row![
horizontal_space(Length::Fill),
content.debug(self.debug),
horizontal_space(Length::Fill),
])
scrollable(
container(content.debug(self.debug))
.align_x(iced::alignment::Horizontal::Center),
)
.width(Length::Fill)
.into(),
);
}