From d505361f2d24a4b1ada9426e7d1c21924ec68f23 Mon Sep 17 00:00:00 2001 From: Reinaldo Neto <47038980+reinaldonetof@users.noreply.github.com> Date: Thu, 2 Mar 2023 16:04:52 -0300 Subject: [PATCH] [FIX] UGC Rules Text align (#4934) --- app/containers/UserGeneratedContentRules.tsx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/app/containers/UserGeneratedContentRules.tsx b/app/containers/UserGeneratedContentRules.tsx index 620efd82c..2f156f638 100644 --- a/app/containers/UserGeneratedContentRules.tsx +++ b/app/containers/UserGeneratedContentRules.tsx @@ -16,11 +16,13 @@ const styles = StyleSheet.create({ }, bottomContainerText: { ...sharedStyles.textRegular, - fontSize: 13 + fontSize: 13, + textAlign: 'center' }, bottomContainerTextBold: { ...sharedStyles.textSemibold, - fontSize: 13 + fontSize: 13, + textAlign: 'center' } });