fix vertical alignment of price column in offer book view

This commit is contained in:
woodser 2025-07-01 09:45:42 -04:00 committed by woodser
parent 4a6043841a
commit e3d7499004

View file

@ -912,7 +912,7 @@ abstract public class OfferBookView<R extends GridPane, M extends OfferBookViewM
HBox hBox = new HBox(); HBox hBox = new HBox();
hBox.setSpacing(5); hBox.setSpacing(5);
hBox.getChildren().addAll(priceLabel, percentageLabel); hBox.getChildren().addAll(priceLabel, percentageLabel);
hBox.setPadding(new Insets(7, 0, 0, 0)); hBox.setAlignment(Pos.CENTER_LEFT);
return hBox; return hBox;
} }
}; };