Changed the anchor font sizes

This commit is contained in:
D-K-P
2023-01-15 10:35:08 -08:00
parent ed8805e587
commit d97470e517
2 changed files with 11 additions and 3 deletions
+2 -2
View File
@@ -2,14 +2,14 @@ import React from "react";
import { Hr } from "@react-email/hr";
import { Link } from "@react-email/link";
import { Text } from "@react-email/text";
import { anchor, footer, hr } from "./styles";
import { anchor, footer, footerAnchor, hr } from "./styles";
export function Footer() {
return (
<>
<Hr style={hr} />
<Text style={footer}>
<Link style={anchor} href="https://app.trigger.dev/">
<Link style={footerAnchor} href="https://app.trigger.dev/">
Trigger.dev
</Link>
. ©Trigger.dev, 2261 Market Street #4968, San Francisco, CA 94114
+9 -1
View File
@@ -60,7 +60,7 @@ export const anchor = {
color: "#2754C5",
fontFamily:
"-apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif",
fontSize: "14px",
fontSize: "16px",
textDecoration: "underline",
};
@@ -84,3 +84,11 @@ export const footer = {
fontSize: "12px",
lineHeight: "16px",
};
export const footerAnchor = {
color: "#2754C5",
fontFamily:
"-apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif",
fontSize: "12px",
textDecoration: "underline",
};