Skip to content

Commit e38de7d

Browse files
authored
Merge pull request #1963 from ruidosujeira/fix-responsiveness-email
fix(cadastro): Corrige overflow e alinhamento do e-mail na tela de co…
2 parents f44e570 + 65d4471 commit e38de7d

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

pages/cadastro/confirmar/index.public.js

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,20 @@ export default function ConfirmSignup() {
1414
return (
1515
<DefaultLayout containerWidth="medium" metadata={{ title: 'Confirme seu email' }}>
1616
<Box sx={{ display: 'flex', flexDirection: 'column', alignItems: 'center', width: '100%', mt: 10 }}>
17-
<Heading as="h1">Confira seu e-mail: {email}</Heading>
17+
<Heading as="h1" sx={{ textAlign: 'center', mb: 2 }}>
18+
Confira seu e-mail:
19+
</Heading>
20+
<Text
21+
sx={{
22+
width: '100%',
23+
textAlign: 'center',
24+
overflowWrap: 'break-word',
25+
fontWeight: 'bold',
26+
fontSize: '1.25rem',
27+
mb: 4,
28+
}}>
29+
{email}
30+
</Text>
1831
<Text>
1932
Caso o e-mail esteja disponível, você receberá um link para confirmar seu cadastro e ativar a sua conta.
2033
</Text>

0 commit comments

Comments
 (0)