Skip to content

Commit

Permalink
continue
Browse files Browse the repository at this point in the history
  • Loading branch information
borispoehland committed Sep 1, 2024
1 parent 52ae736 commit 40c5902
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/email/email.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ const XOXNOEmail = ({
backgroundColor: '#121212',
}}
>
<Container className="max-w-[500px] px-5">
<Container className="px-5">
<Section className="mb-4">
<Img
src={`${MEDIA}/hotlink-ok/${isUnsuccess ? 'unsuccess.png' : 'success.png'}`}
Expand Down
8 changes: 4 additions & 4 deletions src/email/event-email-2.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,9 @@ const translations = {
event: {
meta: 'Your {eventName} Ticket is Here – Claim Now!',
title: 'Your {eventName} Ticket is Here',
greeting: 'Dear {name},',
description:
"Dear {name},<br></br>We're excited to have you join us at the {eventName}! You can use the <b>QR Code attached to this email</b> to pass the event check-in.",
"We're excited to have you join us at the {eventName}! You can use the <b>QR Code attached to this email</b> to pass the event check-in.",
action: 'CLAIM YOUR DIGITAL TICKET HERE',
hint: 'If you want to get the best experience and a unique collectible as a memory of this event, click below to claim your digital ticket:',
qr: 'If you have trouble accessing the ticket on the website, use the <b>QR Code attached to this email</b> to pass the check-in.',
Expand Down Expand Up @@ -91,7 +92,7 @@ const EventEmail = ({
: style.background,
}}
>
<Container className="max-w-[500px] px-5">
<Container className="px-5">
<Section className="min-h-[100px]">
<Center>
<Img
Expand All @@ -107,11 +108,10 @@ const EventEmail = ({
<FixedHeading className="my-0">
{t('title', { eventName: event.name })}
</FixedHeading>
<FixedText className="mb-0">{t('greeting', { name })}</FixedText>
<FixedText>
{t.rich('description', {
eventName: event.name,
name,
br: () => <br />,
b: (chunks) => <b>{chunks}</b>,
})}
</FixedText>
Expand Down
2 changes: 1 addition & 1 deletion src/email/event-email.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ const EventEmail = ({
: style.background,
}}
>
<Container className="max-w-[500px] px-5">
<Container className="px-5">
<Section className="min-h-[100px]">
<Center>
<Img
Expand Down
2 changes: 1 addition & 1 deletion src/email/post-email.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ const PostEmail = ({
unsubscribeToken={unsubscribeToken}
>
<Body className="body" style={style}>
<Container className="max-w-[500px] px-5">
<Container className="px-5">
<Section className="min-h-[100px]">
<Center>
<Img
Expand Down

0 comments on commit 40c5902

Please sign in to comment.