From 2e869b76efb1864b28ba5a5b9206be7e2283bf63 Mon Sep 17 00:00:00 2001 From: Joakim Hulthe Date: Tue, 30 Dec 2025 20:05:08 +0100 Subject: [PATCH] Add some padding to Done button --- gui/ui/app.slint | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/gui/ui/app.slint b/gui/ui/app.slint index 53d3cdb..b05fb41 100644 --- a/gui/ui/app.slint +++ b/gui/ui/app.slint @@ -132,10 +132,13 @@ component ShopView inherits VerticalBox { items <=> list; } - Button { - text: "I am done hehe"; - clicked => { - State.delete-checked(); + HorizontalLayout { + padding: 12px; + Button { + text: "I am done hehe"; + clicked => { + State.delete-checked(); + } } } }