diff --git a/lib/ui/components/buttons/brand_button.dart b/lib/ui/components/buttons/brand_button.dart index a07a1de0..c381af43 100644 --- a/lib/ui/components/buttons/brand_button.dart +++ b/lib/ui/components/buttons/brand_button.dart @@ -39,8 +39,14 @@ class BrandButton { onPressed: onPressed, style: ElevatedButton.styleFrom( tapTargetSize: MaterialTapTargetSize.padded, + padding: const EdgeInsets.symmetric(horizontal: 16.0), ), - child: child ?? Text(text ?? ''), + child: child ?? + Text( + text ?? '', + textAlign: TextAlign.center, + overflow: TextOverflow.ellipsis, + ), ), ); }