From 3a1d568a4253c482f9428020c503b447c480aee6 Mon Sep 17 00:00:00 2001 From: NBA2K1 <78034913+NBA2K1@users.noreply.github.com> Date: Sun, 1 Jun 2025 01:05:34 +0200 Subject: [PATCH] Center the Discord Icon in the button And adjust the GitHub button size to match the now larger Discord button. --- lib/modules/more/about/about_screen.dart | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/lib/modules/more/about/about_screen.dart b/lib/modules/more/about/about_screen.dart index 0adcaed1..889741ec 100644 --- a/lib/modules/more/about/about_screen.dart +++ b/lib/modules/more/about/about_screen.dart @@ -77,7 +77,10 @@ class AboutScreen extends ConsumerWidget { ), ); }, - icon: const Icon(FontAwesomeIcons.github), + icon: const Padding( + padding: EdgeInsets.only(left: 2.5, right: 2.5), + child: Icon(FontAwesomeIcons.github), + ), ), IconButton( onPressed: () { @@ -87,7 +90,10 @@ class AboutScreen extends ConsumerWidget { ), ); }, - icon: const Icon(FontAwesomeIcons.discord), + icon: const Padding( + padding: EdgeInsets.only(right: 5), + child: Icon(FontAwesomeIcons.discord), + ), ), ], ),