mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-08-22 05:29:33 -04:00
add bottom padding to make and take offer views
This commit is contained in:
parent
27eb60d3f1
commit
a2f405b370
2 changed files with 2 additions and 2 deletions
|
@ -978,7 +978,7 @@ public abstract class MutableOfferView<M extends MutableOfferViewModel<?>> exten
|
|||
private void addGridPane() {
|
||||
gridPane = new GridPane();
|
||||
gridPane.getStyleClass().add("content-pane");
|
||||
gridPane.setPadding(new Insets(25, 25, -1, 25));
|
||||
gridPane.setPadding(new Insets(25, 25, 25, 25));
|
||||
gridPane.setHgap(5);
|
||||
gridPane.setVgap(5);
|
||||
GUIUtil.setDefaultTwoColumnConstraintsForGridPane(gridPane);
|
||||
|
|
|
@ -767,7 +767,7 @@ public class TakeOfferView extends ActivatableViewAndModel<AnchorPane, TakeOffer
|
|||
private void addGridPane() {
|
||||
gridPane = new GridPane();
|
||||
gridPane.getStyleClass().add("content-pane");
|
||||
gridPane.setPadding(new Insets(15, 15, -1, 15));
|
||||
gridPane.setPadding(new Insets(25, 25, 25, 25));
|
||||
gridPane.setHgap(5);
|
||||
gridPane.setVgap(5);
|
||||
GUIUtil.setDefaultTwoColumnConstraintsForGridPane(gridPane);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue