From eff48d5b32c07cfaccfe7cdc876227c708357d80 Mon Sep 17 00:00:00 2001 From: Diego Mello Date: Tue, 10 Sep 2024 16:43:17 -0300 Subject: [PATCH] Make use of flexbox --- app/views/LoginView/styles.ts | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/app/views/LoginView/styles.ts b/app/views/LoginView/styles.ts index 4c2e775c2b..bd1b3dc231 100644 --- a/app/views/LoginView/styles.ts +++ b/app/views/LoginView/styles.ts @@ -16,11 +16,11 @@ export default StyleSheet.create({ marginVertical: 16 }, bottomContainer: { - flexDirection: 'column', - alignItems: 'center' + flexDirection: 'column' }, bottomContainerText: { ...sharedStyles.textRegular, + alignSelf: 'center', fontSize: 14, marginTop: 32 }, @@ -31,11 +31,9 @@ export default StyleSheet.create({ marginTop: 32 }, createAccountButton: { - width: '100%', marginTop: 12 }, forgotPasswordButton: { - width: '100%', marginTop: 12 } });