From fd39600c86a6451fdc937e6932cefee7ad6a9c7f Mon Sep 17 00:00:00 2001 From: gonfff Date: Sat, 3 Jan 2026 21:08:20 +0300 Subject: [PATCH] fix! Font size on About page --- lib/presentation/screens/about_screen.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/presentation/screens/about_screen.dart b/lib/presentation/screens/about_screen.dart index bd7f002..7a24a1b 100644 --- a/lib/presentation/screens/about_screen.dart +++ b/lib/presentation/screens/about_screen.dart @@ -136,7 +136,7 @@ class _SettingsTile extends StatelessWidget { value, style: textStyle.copyWith( color: isLink ? linkColor : secondary, - fontSize: 13, + fontSize: 15, decoration: isLink ? TextDecoration.underline : null, ), textAlign: TextAlign.right, @@ -189,7 +189,7 @@ class _LinkValueTile extends StatelessWidget { child: Text( linkLabel ?? value, style: textStyle.copyWith( - fontSize: 13, + fontSize: 15, color: linkColor, decoration: TextDecoration.underline, ),