Skip to content

Commit

Permalink
Fix padding on bottom of mobile special subs
Browse files Browse the repository at this point in the history
  • Loading branch information
abeddow91 committed Sep 19, 2024
1 parent d2ef66e commit 0bf77b4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion dotcom-rendering/src/components/SupportingContent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,8 @@ const wrapperStyles = css`
const backgroundFill = css`
/** background fill should only apply to sublinks on mobile breakpoints */
${until.tablet} {
padding: 8px;
padding: ${space[2]}px;
padding-bottom: ${space[3]}px;
background-color: ${palette('--card-sublinks-background')};
}
`;
Expand Down

0 comments on commit 0bf77b4

Please sign in to comment.