Skip to content

Commit c002ef8

Browse files
Reflect existing conditional padding on right-column area
1 parent b98c18f commit c002ef8

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

dotcom-rendering/src/layouts/StandardLayout.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -552,7 +552,8 @@ export const StandardLayout = (props: WebProps | AppProps) => {
552552
area="right-column"
553553
layoutType={layoutType}
554554
customCss={css`
555-
padding-top: 6px;
555+
padding-top: ${isMedia ? 0 : 6}px;
556+
padding-bottom: ${isMedia ? 41 : 0}px;
556557
`}
557558
element="aside"
558559
>

0 commit comments

Comments
 (0)