diff --git a/lib/ui/app/forms/app_dropdown_button.dart b/lib/ui/app/forms/app_dropdown_button.dart index 34bffb88d..e82a2b807 100644 --- a/lib/ui/app/forms/app_dropdown_button.dart +++ b/lib/ui/app/forms/app_dropdown_button.dart @@ -61,7 +61,7 @@ class AppDropdownButton extends StatelessWidget { dropDownButton = InputDecorator( decoration: InputDecoration( labelText: labelText, - contentPadding: EdgeInsets.only(right: 12, top: 12, bottom: 12), + contentPadding: EdgeInsets.only(right: 10, top: 12, bottom: 12), ), isEmpty: isEmpty, child: dropDownButton); diff --git a/lib/ui/app/invoice/tax_rate_dropdown.dart b/lib/ui/app/invoice/tax_rate_dropdown.dart index 8e1dd86bf..15358beff 100644 --- a/lib/ui/app/invoice/tax_rate_dropdown.dart +++ b/lib/ui/app/invoice/tax_rate_dropdown.dart @@ -74,6 +74,7 @@ class _TaxRateDropdownState extends State { return InputDecorator( decoration: InputDecoration( + contentPadding: EdgeInsets.only(right: 10, top: 12, bottom: 12), labelText: widget.labelText, ), isEmpty: taxRate == null || taxRate.isEmpty,