All files / lib/libs/email/content email-styles.ts

100% Statements 1/1
100% Branches 0/0
100% Functions 0/0
100% Lines 1/1

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 9612x                                                                                                                                                                                              
export const styles = {
  reset: {
    margin: "0",
    padding: "0",
    lineHeight: 1.4,
  },
  main: {
    backgroundColor: "#fff",
    color: "#212121",
    fontFamily:
      "-apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif",
    margin: "0 auto",
    padding: "20px 0 48px",
  },
  wrapper: {
    margin: "0 auto",
    backgroundColor: "#ffffff",
    padding: "20px 0 48px",
  },
  container: {
    backgroundColor: "#F5F5F5",
  },
  text: {
    title: {
      fontSize: "14px",
      fontWeight: "600",
      lineHeight: "1.4",
      letterSpacing: "-0.5px",
      marginBottom: "4px",
      marginTop: "4px",
    },
    description: {
      fontSize: "14px",
      lineHeight: "1.4",
      color: "#333",
      marginBottom: "4px",
      marginTop: "4px",
    },
    base: {
      color: "#333",
      lineHeight: "1.4",
      fontSize: "14px",
      margin: "12px 0",
    },
    footer: {
      color: "#fff",
      fontSize: "14px",
    },
    list: {
      marginLeft: "-20px",
      fontSize: "14px",
      lineHeight: "1.4",
    },
  },
  heading: {
    h1: {
      color: "#333",
      fontSize: "20px",
      fontWeight: "bold",
      marginBottom: "15px",
    },
    h2: {
      fontSize: "16px",
    },
  },
  section: {
    primary: {
      margin: "8px",
      marginTop: "0",
      padding: "8px",
    },
    footer: {
      fontSize: "14px",
      padding: "0 0px",
      fontWeight: "300",
      backgroundColor: "#0071BD",
      color: "#fff",
      textAlign: "center" as const,
    },
  },
  divider: {
    margin: "16px 0",
    borderTop: "1px solid #0071BD",
  },
  logo: {
    container: {
      backgroundColor: "#0071BD",
      padding: "16px",
    },
    link: {
      display: "block",
      maxWidth: "112px",
    },
  } as const,
};