fix: body, #root, AppWrapper and BodyWrapper height: 100% (#5628)

This commit is contained in:
Vignesh Mohankumar 2022-12-11 14:27:00 -05:00 committed by GitHub
parent 40784963a5
commit a5d75cad5b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 1 deletions

@ -89,7 +89,9 @@
z-index: -1;
}
html {
html,
body,
#root {
min-height: 100%;
}

@ -67,12 +67,14 @@ const AppWrapper = styled.div`
display: flex;
flex-flow: column;
align-items: flex-start;
height: 100%;
`
const BodyWrapper = styled.div`
display: flex;
flex-direction: column;
width: 100%;
height: 100%;
padding: 72px 0px 0px 0px;
align-items: center;
flex: 1;