From c3efeb27ea872c56c380725f0608e8691acd624e Mon Sep 17 00:00:00 2001 From: ajstrongdev Date: Thu, 9 Jan 2025 18:38:21 +0000 Subject: [PATCH] Upd: button width Change button width from 200 -> 220 --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 2bf13c1..5f21b6f 100644 --- a/src/main.rs +++ b/src/main.rs @@ -197,7 +197,7 @@ fn create_button<'a>(label: &str, url: &str) -> Element<'a, Message> { }), ) .on_press(Message::Open(url.to_string())) - .width(200.0) + .width(220.0) .padding(10.0) .style(move |_theme, status| match status { button::Status::Active => ACTIVE_BUTTON_STYLE,