diff --git a/lib/oath/views/delete_account_dialog.dart b/lib/oath/views/delete_account_dialog.dart index f43c8f83..85a164bf 100755 --- a/lib/oath/views/delete_account_dialog.dart +++ b/lib/oath/views/delete_account_dialog.dart @@ -64,10 +64,15 @@ class DeleteAccountDialog extends ConsumerWidget { child: Column( crossAxisAlignment: CrossAxisAlignment.start, children: [ - Text(l10n.p_warning_delete_account), + Text( + l10n.p_warning_delete_account, + style: Theme.of(context) + .textTheme + .bodyMedium + ?.copyWith(fontWeight: FontWeight.w700), + ), Text( l10n.p_warning_disable_credential, - style: Theme.of(context).textTheme.bodyLarge, ), Text(l10n.l_account(getTextName(credential))), ]