From f6c953fb1dcf16b303d8382160dbbffbde060b2d Mon Sep 17 00:00:00 2001 From: pythcoiner Date: Mon, 4 Nov 2024 11:41:13 +0100 Subject: [PATCH] gui(installer): align title & descrpition in path cards --- gui/src/installer/view/editor/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/src/installer/view/editor/mod.rs b/gui/src/installer/view/editor/mod.rs index 40d334b4..1f1977d7 100644 --- a/gui/src/installer/view/editor/mod.rs +++ b/gui/src/installer/view/editor/mod.rs @@ -97,7 +97,7 @@ pub fn path( Container::new( Column::new() .spacing(10) - .push_maybe(title.map(p1_bold)) + .push_maybe(title.map(|t| Row::new().push(Space::with_width(10)).push(p1_bold(t)))) .push(defined_sequence(sequence, duplicate_sequence)) .push( Column::new()