Skip to content

Commit

Permalink
fix(app-layout): adjusts vertical centering in desktop
Browse files Browse the repository at this point in the history
  • Loading branch information
anguspiv committed Nov 15, 2022
1 parent aafed53 commit 194315d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/templates/AppLayout/AppLayout.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ const pageCss = css`
const headerWrapperCss = css`
position: relative;
grid-area: header;
min-height: 100vh;
`;

const headerContentCss = css`
Expand All @@ -39,7 +38,8 @@ const headerContentCss = css`
position: sticky;
justify-content: center;
top: 0;
min-height: 100vh;
height: 100%;
max-height: 100vh;
}
`;

Expand Down

0 comments on commit 194315d

Please sign in to comment.