Skip to content

Commit

Permalink
fix: improve codeforafrica footer design
Browse files Browse the repository at this point in the history
  • Loading branch information
m453h committed Jun 25, 2024
1 parent 3f30efe commit 251173e
Showing 1 changed file with 9 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ const NewsletterSubscriptionRoot = styled(RichTypography)(
borderRadius: 0,
display: "flex",
height: typography.pxToRem(36),
marginTop: 0,
marginBottom: typography.pxToRem(30),
outline: "none",
padding: `0 ${typography.pxToRem(12)}`,
Expand All @@ -38,10 +39,15 @@ const NewsletterSubscriptionRoot = styled(RichTypography)(
"& #mc_embed_signup input[type=submit]": {
...typography.subtitle1,
background: "none",
border: "none",
border: `1px solid ${palette.text.secondary}`,
color: "inherit",
padding: 0,
textDecoration: "underline",
padding: `${typography.pxToRem(6)} ${typography.pxToRem(12)}`,
textDecoration: "none",
},
"& #mc_embed_signup input[type=submit]:hover": {
cursor: "pointer",
background: `${palette.text.secondary}`,
color: `${palette.text.primary}`,
},
}),
);
Expand Down

0 comments on commit 251173e

Please sign in to comment.