fix: use dynamic view height for mobile support (#1014)
This commit is contained in:
committed by
GitHub
parent
bf7ebcaed2
commit
94b21424ce
@ -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;
|
||||
|
@ -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;
|
||||
|
Reference in New Issue
Block a user