re-added last two commits (<br> fix and dark mode for all booked today text
parent
de14b2de33
commit
61fd300bc8
|
@ -43,7 +43,7 @@ const AvailableTimes = ({
|
||||||
))}
|
))}
|
||||||
{isFullyBooked && (
|
{isFullyBooked && (
|
||||||
<div className="w-full h-full flex flex-col justify-center content-center items-center -mt-4">
|
<div className="w-full h-full flex flex-col justify-center content-center items-center -mt-4">
|
||||||
<h1 className="text-xl font dark:text-white">{user.name} is all booked today.</h1>
|
<h1 className="text-xl text-black dark:text-white">{user.name} is all booked today.</h1>
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
|
|
|
@ -66,13 +66,13 @@ export default class EventOrganizerMail extends EventMail {
|
||||||
<a href="mailto:${this.calEvent.attendees[0].email}">${this.calEvent.attendees[0].email}</a><br />
|
<a href="mailto:${this.calEvent.attendees[0].email}">${this.calEvent.attendees[0].email}</a><br />
|
||||||
<br />` +
|
<br />` +
|
||||||
this.getAdditionalBody() +
|
this.getAdditionalBody() +
|
||||||
"<br />" +
|
|
||||||
`<strong>Invitee Time Zone:</strong><br />
|
`<strong>Invitee Time Zone:</strong><br />
|
||||||
${this.calEvent.attendees[0].timeZone}<br />
|
${this.calEvent.attendees[0].timeZone}<br />
|
||||||
<br />
|
<br />
|
||||||
<strong>Additional notes:</strong><br />
|
<strong>Additional notes:</strong><br />
|
||||||
${this.calEvent.description}
|
${this.calEvent.description}
|
||||||
` +
|
` +
|
||||||
|
"<br />" +
|
||||||
this.getAdditionalFooter() +
|
this.getAdditionalFooter() +
|
||||||
`
|
`
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in New Issue