Skip to content

Commit

Permalink
Fix study summary display on small screens
Browse files Browse the repository at this point in the history
  • Loading branch information
ricardoduplos committed Apr 23, 2021
1 parent ace2df1 commit 5c746ef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/styles/content-block.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,6 @@ export const ContentBlock = styled(UniversalGridder).attrs({
})`
padding: ${glsp(themeVal('layout.gap.xsmall'), 0)};
grid-row-gap: ${glsp(themeVal('layout.gap.xsmall'))};
grid-template-rows: min-content;
grid-auto-rows: 1fr;
${media.smallUp`
padding: ${glsp(themeVal('layout.gap.small'), 0)};
Expand All @@ -65,6 +63,8 @@ export const ContentBlock = styled(UniversalGridder).attrs({
${media.largeUp`
padding: ${glsp(themeVal('layout.gap.large'), 0)};
grid-row-gap: ${glsp(themeVal('layout.gap.large'))};
grid-template-rows: min-content;
grid-auto-rows: 1fr;
`}
${media.xlargeUp`
Expand Down

0 comments on commit 5c746ef

Please sign in to comment.