From 347e6191c5f49c25af0a76dd1201d397821219f6 Mon Sep 17 00:00:00 2001 From: Alex Date: Mon, 20 Nov 2023 12:59:53 -0600 Subject: [PATCH] chore(mobile): minor font fix --- mobile/lib/modules/search/views/person_result_page.dart | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mobile/lib/modules/search/views/person_result_page.dart b/mobile/lib/modules/search/views/person_result_page.dart index 60d1999420..004e3c6578 100644 --- a/mobile/lib/modules/search/views/person_result_page.dart +++ b/mobile/lib/modules/search/views/person_result_page.dart @@ -76,13 +76,13 @@ class PersonResultPage extends HookConsumerWidget { children: [ Text( 'search_page_person_add_name_title', - style: context.textTheme.titleSmall?.copyWith( - color: context.themeData.colorScheme.secondary, + style: context.textTheme.titleMedium?.copyWith( + color: context.primaryColor, ), ).tr(), Text( 'search_page_person_add_name_subtitle', - style: context.textTheme.labelSmall, + style: context.textTheme.labelLarge, ).tr(), ], )