Skip to content

Commit

Permalink
Add more top padding to the header to account for ads
Browse files Browse the repository at this point in the history
  • Loading branch information
pcraig3 committed Oct 26, 2024
1 parent 16372e5 commit c4ec57d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Layout.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,11 +67,11 @@ const linkStyles = (color) => css`
`
const header = css`
${horizontalPadding};
padding-top: calc(${theme.space.xs} + 3px);
padding-top: calc(${theme.space.sm});
padding-bottom: ${theme.space.xs};
@media (${theme.mq.md}) {
padding-top: ${theme.space.sm};
padding-top: ${theme.space.sm} + 3px;
padding-bottom: ${theme.space.sm};
}
`
Expand Down

0 comments on commit c4ec57d

Please sign in to comment.