Skip to content
This repository has been archived by the owner on Jun 24, 2022. It is now read-only.

Swap page layout #2488

Merged
merged 4 commits into from
Feb 25, 2022
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions src/custom/components/Footer/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,8 @@ const Wrapper = styled.div`
${({ theme }) => theme.flexRowNoWrap}
align-items: center;
justify-content: space-evenly;
margin: auto 96px 0 32px;
margin: auto 16px;
width: 100%;

${({ theme }) => theme.mediaWidth.upToMedium`
margin: 0 auto 65px;
`}
`

const FooterWrapper = styled.div`
Expand Down
7 changes: 4 additions & 3 deletions src/custom/pages/App/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,12 @@ export const Wrapper = styled(AppMod)``

export const BodyWrapper = styled.div`
display: flex;
flex-direction: column;
flex-direction: row;
width: 100%;
padding-top: 120px;
padding-top: 10vh;
align-items: center;
flex: 1;
justify-content: center;
flex: auto;
overflow-y: auto;
overflow-x: hidden;
z-index: 1;
Expand Down