mirror of
https://github.com/kodjodevf/mangayomi.git
synced 2026-05-12 09:20:38 +00:00
Center the Discord Icon in the button
And adjust the GitHub button size to match the now larger Discord button.
This commit is contained in:
parent
34f0be6d9a
commit
3a1d568a42
1 changed files with 8 additions and 2 deletions
|
|
@ -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),
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
|
|
|
|||
Loading…
Reference in a new issue