diff --git a/lib/ui/app/buttons/elevated_button.dart b/lib/ui/app/buttons/elevated_button.dart index e07bbc042..96ae80564 100644 --- a/lib/ui/app/buttons/elevated_button.dart +++ b/lib/ui/app/buttons/elevated_button.dart @@ -35,7 +35,10 @@ class AppButton extends StatelessWidget { text: label, alignment: MainAxisAlignment.center, ) - : Text(label, overflow: TextOverflow.ellipsis), + : SizedBox( + child: Text(label, overflow: TextOverflow.ellipsis), + height: 24, + ), onPressed: onPressed, );