bumped iced_layershell version

This commit is contained in:
Jiří Maxmilián Stříbrný 2026-03-24 15:14:18 +01:00
parent c2c4881942
commit 83b396ae3e
3 changed files with 12 additions and 12 deletions

View file

@ -21,7 +21,6 @@ impl App {
Self {
widgets: vec![
Box::new(ShutdownWidget::new()),
Box::new(Spacer::new(iced::Length::Fixed(5.))),
Box::new(ClockWidget::new()),
Box::new(Spacer::new(iced::Length::Fill)),
Box::new(BatteryWidget::new()),
@ -47,6 +46,7 @@ impl App {
.padding(iced::Padding::from([0, 5]))
.height(iced::Length::Fill)
.width(iced::Length::Fill)
.spacing(5)
.align_y(iced::Alignment::Center)
.into()
}