Skip to content

Commit 9ee82b5

Browse files
Fix uneven vertical spacing above/below newsletter frequency badge
Card top padding was space[3] (12px) while the badge row's margin-bottom was space[2] (8px), making the padding above and below the circular icon uneven. Align top padding to 8px to match. Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com>
1 parent 3d641b9 commit 9ee82b5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

dotcom-rendering/src/components/NewsletterSignupCard.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export type NewsletterSignupCardProps = {
2222
const containerStyles = css`
2323
clear: left;
2424
background-color: ${themePalette('--newsletter-card-background')};
25-
padding: ${space[3]}px ${space[3]}px ${space[4]}px ${space[3]}px;
25+
padding: ${space[2]}px ${space[3]}px ${space[4]}px ${space[3]}px;
2626
`;
2727

2828
const dividerStyles = css`

0 commit comments

Comments
 (0)