Enhanced the design of the 'invite-user' and 'confirm-email' templates by adding new CSS code. This CSS code professionaly styles the email, improving readability and user experience.
17 lines
266 B
TypeScript
17 lines
266 B
TypeScript
import * as React from 'react';
|
|
|
|
export function BodyStyle() {
|
|
return (
|
|
<style>
|
|
{`
|
|
body {
|
|
background-color: #fff;
|
|
margin: auto;
|
|
font-family: sans-serif;
|
|
color: #484848;
|
|
}
|
|
`}
|
|
</style>
|
|
);
|
|
}
|