wip rebase updates

This commit is contained in:
Ashley Wulber 2026-02-10 15:37:41 -05:00
parent 86dcf8af6c
commit e10459fb37
68 changed files with 1776 additions and 1544 deletions

View file

@ -1,7 +1,7 @@
use crate::{
Apply, Element, fl,
iced::{Alignment, Length},
widget::{self, horizontal_space},
widget::{self, space},
};
#[derive(Debug, Default, Clone, derive_setters::Setters)]
@ -99,7 +99,7 @@ pub fn about<'a, Message: Clone + 'static>(
let section_button = |name: &'a str, url: &'a str| -> Element<'a, Message> {
widget::row()
.push(widget::text(name))
.push(horizontal_space())
.push(space::horizontal())
.push_maybe(
(!url.is_empty()).then_some(crate::widget::icon::from_name("link-symbolic").icon()),
)