gui(installer): list wallets using secondary buttons

This commit is contained in:
Michael Mallan 2024-11-07 09:55:51 +00:00
parent ff968ea51f
commit ef55e8f01e
No known key found for this signature in database
GPG Key ID: 5177CDCEDB0EABEB

View File

@ -60,6 +60,7 @@ pub fn import_wallet_or_descriptor<'a>(
for (i, wallet) in wallets.into_iter().enumerate() {
col_wallets = col_wallets.push(
Button::new(h5_regular(wallet).width(Length::Fill))
.style(theme::Button::Secondary)
.padding(10)
.on_press(Message::Select(i)),
);