Update header widget

This commit is contained in:
Michael Thomas 2022-09-11 12:41:01 -04:00
parent 1e5382e8f1
commit c6090a307a
1 changed files with 11 additions and 8 deletions

View File

@ -15,7 +15,7 @@ class HeaderWidget extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Container(
padding: const EdgeInsets.only(left: 40, right: 40, top: 20, bottom: 15),
padding: const EdgeInsets.only(left: 40, right: 36, top: 20, bottom: 15),
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
crossAxisAlignment: CrossAxisAlignment.center,
@ -31,13 +31,16 @@ class HeaderWidget extends StatelessWidget {
if (link != null)
GestureDetector(
onTap: () => context.router.navigate(link!.href),
child: Text(
link!.text,
style: furmanTextStyle(const TextStyle(
color: Color(0xff755898),
fontSize: 12,
fontWeight: FontWeight.bold,
)),
child: Padding(
padding: const EdgeInsets.all(4),
child: Text(
link!.text,
style: furmanTextStyle(const TextStyle(
color: Color(0xff755898),
fontSize: 12,
fontWeight: FontWeight.bold,
)),
),
),
),
],