Merge pull request #18 from verdigado/feature/customize-email-templates

Customize Email Templates
This commit is contained in:
Niko Heller 2024-09-02 10:47:23 +02:00 committed by GitHub
commit de656e827a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.2 KiB

After

Width:  |  Height:  |  Size: 5.9 KiB

View file

@ -42,7 +42,7 @@ export const Button = (props: React.ComponentProps<typeof UnstyledButton>) => {
{...props}
className={props.className}
style={{
backgroundColor: "#4F46E5",
backgroundColor: "#005437",
borderRadius: "4px",
padding: "12px 14px",
fontFamily,
@ -57,7 +57,7 @@ export const Link = (props: LinkProps) => {
return (
<UnstyledLink
{...props}
style={{ color: "#4F46E5", fontFamily, ...props.style }}
style={{ color: "#005437", fontFamily, ...props.style }}
/>
);
};