add bottom padding for copy, clone, and edit offer views (#1935)

This commit is contained in:
woodser 2025-08-31 09:42:52 -04:00 committed by GitHub
parent 55c02a53d3
commit 19ee6d4343
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

View file

@ -110,7 +110,7 @@ public class CloneOfferView extends MutableOfferView<CloneOfferViewModel> {
volumeCurrencyLabel.setDisable(true);
// Workaround to fix margin on top of amount group
gridPane.setPadding(new Insets(-20, 25, -1, 25));
gridPane.setPadding(new Insets(-20, 25, 25, 25));
updatePriceToggle();
updateElementsWithDirection();

View file

@ -54,7 +54,7 @@ public class DuplicateOfferView extends MutableOfferView<DuplicateOfferViewModel
super.doActivate();
// Workaround to fix margin on top of amount group
gridPane.setPadding(new Insets(-20, 25, -1, 25));
gridPane.setPadding(new Insets(-20, 25, 25, 25));
updatePriceToggle();

View file

@ -103,7 +103,7 @@ public class EditOfferView extends MutableOfferView<EditOfferViewModel> {
volumeCurrencyLabel.setDisable(true);
// Workaround to fix margin on top of amount group
gridPane.setPadding(new Insets(-20, 25, -1, 25));
gridPane.setPadding(new Insets(-20, 25, 25, 25));
updatePriceToggle();
updateElementsWithDirection();