diff --git a/lib/settings/color_icon.dart b/lib/settings/color_icon.dart index b433766..850d698 100644 --- a/lib/settings/color_icon.dart +++ b/lib/settings/color_icon.dart @@ -68,12 +68,16 @@ class _ColorIconState extends State { ), actions: [ ElevatedButton( - style: const ButtonStyle( + style: ButtonStyle( + padding: MaterialStateProperty.all( + const EdgeInsets.symmetric( + vertical: 10, horizontal: 20), + ), foregroundColor: - MaterialStatePropertyAll( + const MaterialStatePropertyAll( Colors.white), backgroundColor: - MaterialStatePropertyAll( + const MaterialStatePropertyAll( Colors.grey), ), child: const Text('Cancel'), @@ -84,6 +88,10 @@ class _ColorIconState extends State { ), ElevatedButton( style: ButtonStyle( + padding: MaterialStateProperty.all( + const EdgeInsets.symmetric( + vertical: 10, horizontal: 20), + ), foregroundColor: const MaterialStatePropertyAll( Colors.white), @@ -101,12 +109,16 @@ class _ColorIconState extends State { child: const Text('Reset'), ), ElevatedButton( - style: const ButtonStyle( + style: ButtonStyle( + padding: MaterialStateProperty.all( + const EdgeInsets.symmetric( + vertical: 10, horizontal: 20), + ), foregroundColor: - MaterialStatePropertyAll( + const MaterialStatePropertyAll( Colors.white), backgroundColor: - MaterialStatePropertyAll( + const MaterialStatePropertyAll( HaboColors.primary), ), child: const Text('Done'),