Skip to content

Commit

Permalink
Make table fill height
Browse files Browse the repository at this point in the history
  • Loading branch information
HenrikJannsen committed Sep 29, 2024
1 parent a9aef08 commit 7b24d95
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -76,9 +76,11 @@ public ReputationRankingView(ReputationRankingModel model,
configTableView();

VBox contentBox = new VBox(10);
contentBox.getChildren().addAll(headlineLabel, richTableView);
contentBox.getStyleClass().add("bisq-common-bg");
VBox.setVgrow(richTableView, Priority.ALWAYS);
contentBox.getChildren().addAll(headlineLabel, richTableView);

VBox.setVgrow(contentBox, Priority.ALWAYS);
root.getChildren().addAll(contentBox);
root.setPadding(new Insets(0, 40, 20, 40));
}
Expand Down

0 comments on commit 7b24d95

Please sign in to comment.