make account creation buttons green

This commit is contained in:
woodser 2025-06-09 07:22:23 -04:00 committed by woodser
parent e4e118f70c
commit 4f9e39410d
2 changed files with 2 additions and 0 deletions

View file

@ -181,6 +181,7 @@ public class CryptoAccountsView extends PaymentAccountsView<GridPane, CryptoAcco
Tuple3<Button, Button, Button> tuple3 = add3ButtonsAfterGroup(root, ++gridRow, Res.get("shared.addNewAccount"),
Res.get("shared.ExportAccounts"), Res.get("shared.importAccounts"));
addAccountButton = tuple3.first;
addAccountButton.setId("buy-button-big");
exportButton = tuple3.second;
importButton = tuple3.third;
}

View file

@ -462,6 +462,7 @@ public class TraditionalAccountsView extends PaymentAccountsView<GridPane, Tradi
Tuple3<Button, Button, Button> tuple3 = add3ButtonsAfterGroup(root, ++gridRow, Res.get("shared.addNewAccount"),
Res.get("shared.ExportAccounts"), Res.get("shared.importAccounts"));
addAccountButton = tuple3.first;
addAccountButton.setId("buy-button-big");
exportButton = tuple3.second;
importButton = tuple3.third;
}