Skip to content

Commit

Permalink
Upd: button width
Browse files Browse the repository at this point in the history
Change button width from 200 -> 220
  • Loading branch information
ajstrongdev committed Jan 9, 2025
1 parent 10ab44b commit c3efeb2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit c3efeb2

Please sign in to comment.