Skip to content

Commit

Permalink
fix(verify-email-scene): spacing feedback part 2
Browse files Browse the repository at this point in the history
  • Loading branch information
TheLeoB committed Aug 5, 2021
1 parent 24e8d03 commit 16d9d43
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
Expand Up @@ -2664,7 +2664,7 @@ type MessagesType = {
'scenes.uploaddoc.uploadnow': 'Upload Now'
'scenes.uploaddoc.verify': 'We need to verify your identity in order to allow buys,\n sells or exchanges.'
'scenes.verifyemail.title': 'Verify Your Email'
'scenes.verifyemail.description': 'We sent a verification email to: <b>{email}</b>. Please click the link in the email to continue.'
'scenes.verifyemail.description': 'We sent a verification email to <b>{email}</b>. Please click the link in the email to continue.'
'scenes.verifyemail.button': 'Email didn’t arrive?'
'scenes.verifyemail.do_it_later': 'I’ll Do This Later.'
'scenes.verifyemailtoken.error': 'Something went wrong.'
Expand Down
Expand Up @@ -29,7 +29,13 @@ const VerifyEmail = ({ email, resendEmail, skipVerification }: Props) => {
<IconWrapper>
<Icon color='white' name='email' size='24px' />
</IconWrapper>
<Text size='20px' weight={600} color='black' style={{ marginTop: '8px' }}>
<Text
size='20px'
weight={600}
color='black'
style={{ marginTop: '8px' }}
lineHeight='1.5'
>
<FormattedMessage id='scenes.verifyemail.title' defaultMessage='Verify Your Email' />
</Text>
<Text
Expand All @@ -41,7 +47,7 @@ const VerifyEmail = ({ email, resendEmail, skipVerification }: Props) => {
>
<FormattedMessage
id='scenes.verifyemail.description'
defaultMessage='We sent a verification email to: <b>{email}</b>. Please click the link in the email to continue.'
defaultMessage='We sent a verification email to <b>{email}</b>. Please click the link in the email to continue.'
values={{
email
}}
Expand All @@ -66,8 +72,8 @@ const VerifyEmail = ({ email, resendEmail, skipVerification }: Props) => {
<Link
onClick={skipVerification}
size='14px'
style={{ marginTop: '8px' }}
weight={500}
style={{ marginTop: '16px' }}
weight={600}
data-e2e='verifyEmailLater'
color='blue600'
>
Expand Down

0 comments on commit 16d9d43

Please sign in to comment.