fix: page sometimes being cut off before all content shown

Signed-off-by: Raul Kele <raulkeleblk@gmail.com>
This commit is contained in:
Raul Kele 2023-02-10 19:20:33 +02:00
parent f1aad5228f
commit 0312285edf
3 changed files with 5 additions and 3 deletions

View File

@ -29,7 +29,7 @@ const useStyles = makeStyles((theme) => ({
backgroundColor: '#FFFFFF',
display: 'flex',
flexFlow: 'column',
height: '100vh'
height: '100%'
},
container: {
paddingTop: 5,

View File

@ -48,7 +48,7 @@ const useStyles = makeStyles((theme) => ({
backgroundColor: '#FFFFFF',
display: 'flex',
flexFlow: 'column',
height: '100vh'
height: '100%'
},
container: {
paddingTop: 5,

View File

@ -4,7 +4,9 @@ import makeStyles from '@mui/styles/makeStyles';
const useStyles = makeStyles(() => ({
topMargin: {
marginTop: '10vh'
marginTop: '10vh',
minHeight: '90vh',
height: '100%'
}
}));