diff --git a/src/pages/signin/SignInPageLayout/SignInPageContent.js b/src/pages/signin/SignInPageLayout/SignInPageContent.js
index 4006d65a0093..522bccdcc13f 100755
--- a/src/pages/signin/SignInPageLayout/SignInPageContent.js
+++ b/src/pages/signin/SignInPageLayout/SignInPageContent.js
@@ -37,54 +37,62 @@ const SignInPageContent = props => (
showsVerticalScrollIndicator={false}
style={[
styles.h100,
- styles.alignSelfCenter,
+ !props.isSmallScreenWidth && styles.alignSelfCenter,
!props.isSmallScreenWidth && styles.signInPageWideLeftContainer,
]}
contentContainerStyle={[
scrollViewContentContainerStyles,
+ styles.alignItemsCenter,
!props.isSmallScreenWidth && styles.ph6,
]}
>
-
-
+
-
-
+
+
+
+
+ {props.shouldShowWelcomeText && (
+
+ {props.welcomeText}
+
+ )}
+ {props.children}
+
+
+
+
- {props.shouldShowWelcomeText && (
-
- {props.welcomeText}
-
- )}
- {props.children}
-
-
-
-
+
);