Skip to content

Commit

Permalink
Merge pull request #13022 from guardian/doml/big-six-padding
Browse files Browse the repository at this point in the history
Big Six AB test: Adds padding above top row
  • Loading branch information
domlander authored Dec 17, 2024
2 parents acc3eca + e32d554 commit 5a69638
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion dotcom-rendering/src/components/BigSixOnwardsContent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,10 @@ const containerStyles = css`
}
`;

const cardsContainer = css`
padding-top: ${space[2]}px;
`;

const headerStyles = css`
${headlineBold24};
color: ${palette('--carousel-text')};
Expand Down Expand Up @@ -124,7 +128,7 @@ export const BigSixOnwardsContent = ({ url, discussionApiUrl }: Props) => {
<h2 css={mobileHeaderStyles}>
<span>{heading}</span>
</h2>
<div>
<div css={cardsContainer}>
<UL direction="row" padBottom={true}>
{firstSlice75.map((trail) => (
<LI key={trail.url} padSides={true} percentage="75%">
Expand Down

0 comments on commit 5a69638

Please sign in to comment.