diff options
author | Ashm Walia <40498934+ashmgarv@users.noreply.github.com> | 2021-02-02 13:17:29 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-02 13:17:29 -0800 |
commit | 5404ffb251885bb748f974f8f9d6f592fa0e1466 (patch) | |
tree | 023b52a162812430921762c8c545b497a48189e6 | |
parent | cda6f3370037dc58f178e2693195e76011103ade (diff) | |
parent | 5357ee82b635596aff3ce02bf07b61882fb42f49 (diff) |
Merge pull request #214 from ashmgarv/tma598
[TMA 598] Reposition Forgot Password
-rw-r--r-- | src/screens/onboarding/Login.tsx | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/src/screens/onboarding/Login.tsx b/src/screens/onboarding/Login.tsx index 8974e000..63296ede 100644 --- a/src/screens/onboarding/Login.tsx +++ b/src/screens/onboarding/Login.tsx @@ -31,7 +31,7 @@ import { import {OnboardingStackParams} from '../../routes/onboarding'; import {fcmService} from '../../services'; import {BackgroundGradientType, UserType} from '../../types'; -import {userLogin} from '../../utils'; +import {normalize, userLogin} from '../../utils'; type VerificationScreenRouteProp = RouteProp<OnboardingStackParams, 'Login'>; type VerificationScreenNavigationProp = StackNavigationProp< @@ -322,13 +322,16 @@ const styles = StyleSheet.create({ marginBottom: '10%', }, forgotPassword: { - marginTop: 10, - marginBottom: 15, + alignSelf: 'flex-start', + marginVertical: '1%', + borderBottomWidth: 1, + paddingBottom: '1%', + left: '3%', + borderBottomColor: 'white', }, forgotPasswordText: { - fontSize: 14, + fontSize: normalize(14), color: '#fff', - textDecorationLine: 'underline', }, start: { width: 144, |