Skip to content

Commit e67e85c

Browse files
Fix not appearing
1 parent bd4513b commit e67e85c

2 files changed

Lines changed: 4 additions & 6 deletions

File tree

dotcom-rendering/src/components/RightColumn.tsx

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,7 @@ const hideBelow = (showFrom: Breakpoint) => css`
88
}
99
1010
${from[showFrom]} {
11-
height: 100%;
1211
display: block;
13-
flex-basis: 300px;
14-
flex-grow: 0;
15-
flex-shrink: 0;
1612
}
1713
`;
1814

dotcom-rendering/src/layouts/StandardLayout.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -637,10 +637,12 @@ export const StandardLayout = (props: WebProps | AppProps) => {
637637
css={[
638638
css(grid.column.centre),
639639
css`
640+
display: none;
640641
${from.desktop} {
642+
display: block;
643+
padding-top: 6px;
641644
${grid.column.right};
642-
grid-row: 1;
643-
align-self: start;
645+
grid-row: 1 / span 999;
644646
}
645647
`,
646648
]}

0 commit comments

Comments
 (0)