fix: use dynamic view height for mobile support (#1014)

This commit is contained in:
Daniel Lautzenheiser
2024-01-02 12:23:09 -05:00
committed by GitHub
parent bf7ebcaed2
commit 94b21424ce
5 changed files with 6 additions and 6 deletions

View File

@ -13,7 +13,7 @@ const StyledCommunityContent = styled('div')(
({ theme }) => `
width: 100%;
padding-top: 72px;
min-height: calc(100vh - 72px);
min-height: calc(100dvh - 72px);
display: flex;
flex-direction: column;
gap: 80px;

View File

@ -20,7 +20,7 @@ const StyledReleaseContent = styled('div')(
({ theme }) => `
width: 100%;
padding-top: 72px;
min-height: calc(100vh - 72px);
min-height: calc(100dvh - 72px);
display: flex;
flex-direction: column;
gap: 20px;