Skip to content

Commit

Permalink
styling tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
LemonardoD authored and flipvh committed Nov 11, 2024
1 parent 19c2dfe commit b6fad25
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion backend/emails/components/email-reply-to.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ const link = {
export const EmailReplyTo = ({ email, emailText }: { email?: string; emailText?: string }) => (
<>
<AppLogo />
<Text style={{ marginTop: '1.25rem', gap: '0.25rem', textAlign: 'center' as const }}>
<Text
style={{ marginTop: '1.25rem', gap: '0.25rem', textAlign: 'center' as const, alignItems: 'center', display: 'flex', justifyContent: 'center' }}
>
{email && (
<Link style={link} href={`mailto:${email}`}>
{emailText ? emailText : i18n.t('backend:email.inviter_email')}
Expand Down

0 comments on commit b6fad25

Please sign in to comment.