Skip to content

Commit

Permalink
Fix layout issue
Browse files Browse the repository at this point in the history
  • Loading branch information
HenrikJannsen committed Jan 21, 2025
1 parent 9de5a75 commit a70184b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -172,11 +172,12 @@ public TradeDetailsView(TradeDetailsModel model, TradeDetailsController controll
Label detailsLabel = new Label(Res.get("bisqEasy.openTrades.tradeDetails.details").toUpperCase());
detailsLabel.getStyleClass().addAll("text-fill-grey-dimmed", "font-light", "medium-text");
Region detailsLine = getLine();

VBox.setMargin(headline, new Insets(-5, 0, 5, 0));
VBox.setMargin(overviewLabel, new Insets(0, 0, -5, 0));
VBox.setMargin(detailsLabel, new Insets(15, 0, -5, 0));
VBox content = new VBox(10,
headline,

overviewLabel,
overviewLine,
tradersAndRoleBox,
Expand All @@ -185,7 +186,6 @@ public TradeDetailsView(TradeDetailsModel model, TradeDetailsController controll
paymentAccountDataBox,
btcPaymentAddressBox,
paymentProofBox,

detailsLabel,
detailsLine,
tradeIdBox,
Expand Down

0 comments on commit a70184b

Please sign in to comment.