diff options
author | Rohan Raj Gupta <[email protected]> | 2022-08-25 23:02:26 +0530 |
---|---|---|
committer | GitHub <[email protected]> | 2022-08-25 23:02:26 +0530 |
commit | a4b87e94548f06db72ab9f4f896672f889ae4586 (patch) | |
tree | 8be0883ea33c1cf38ad1283e6dda6a27404687ae /client/src/pages/Enrollment/Agreement | |
parent | 2d9100d3aa82d2901142464b7117c01cfbd6d04e (diff) | |
parent | ce40b4240d7d23d4a6817dea1a6bc45546419718 (diff) |
Merge pull request #17 from Blaster4385/develop
Kaand number 2
Diffstat (limited to 'client/src/pages/Enrollment/Agreement')
-rw-r--r-- | client/src/pages/Enrollment/Agreement/Agreement.jsx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/client/src/pages/Enrollment/Agreement/Agreement.jsx b/client/src/pages/Enrollment/Agreement/Agreement.jsx index 5b7950b..704b0d5 100644 --- a/client/src/pages/Enrollment/Agreement/Agreement.jsx +++ b/client/src/pages/Enrollment/Agreement/Agreement.jsx @@ -46,7 +46,7 @@ const Agreement = ({ unverified, setUnverified }) => { }, 30000) } - const description = ['CLICK_ON_SEND_OTP', 'YOU_WILL_RECIEVE_AN_OTP_ON_YOUR_MOBILE_NUMBER', 'YOU_CAN_RESEND_THE_OTP_AFTER_30_SECONDS_IF_YOU_HAVENT_RECEIVED_IT_YET', 'CLICK_ON_VERIFY_OTP_TO_VERIFY_YOUR_MOBILE_NUMBER'] + const description = ['CLICK_ON_SEND_OTP', 'YOU_WILL_RECIEVE_AN_OTP_ON_YOUR_MOBILE_NUMBER', 'YOU_CAN_RESEND_THE_OTP_AFTER_30_SECONDS_IF_YOU_HAVENT_RECEIVED_IT_YET', 'CLICK_ON_VERIFY_OTP_TO_VERIFY_YOUR_MOBILE_NUMBER'] return ( <> @@ -73,14 +73,14 @@ const Agreement = ({ unverified, setUnverified }) => { /> </div> <div className={styles.card__elements}> - <Typography>{t('PLEASE_VERIFY_YOUR_IDENTITY')}</Typography> + <Typography sx={{ fontSize: '1.5rem' }}>{t('PLEASE_VERIFY_YOUR_IDENTITY')}</Typography> <Button color="primary" size="large" type="submit" variant="contained" disabled={disabled} - sx={{ marginTop: '1rem' }} + sx={{ marginTop: '1rem', fontSize: '1.5rem', padding: '10px 30px' }} onClick={() => { mutate() setDisabled(true) |