fix: page sometimes being cut off before all content shown
Signed-off-by: Raul Kele <raulkeleblk@gmail.com>
This commit is contained in:
parent
f1aad5228f
commit
0312285edf
@ -29,7 +29,7 @@ const useStyles = makeStyles((theme) => ({
|
||||
backgroundColor: '#FFFFFF',
|
||||
display: 'flex',
|
||||
flexFlow: 'column',
|
||||
height: '100vh'
|
||||
height: '100%'
|
||||
},
|
||||
container: {
|
||||
paddingTop: 5,
|
||||
|
@ -48,7 +48,7 @@ const useStyles = makeStyles((theme) => ({
|
||||
backgroundColor: '#FFFFFF',
|
||||
display: 'flex',
|
||||
flexFlow: 'column',
|
||||
height: '100vh'
|
||||
height: '100%'
|
||||
},
|
||||
container: {
|
||||
paddingTop: 5,
|
||||
|
@ -4,7 +4,9 @@ import makeStyles from '@mui/styles/makeStyles';
|
||||
|
||||
const useStyles = makeStyles(() => ({
|
||||
topMargin: {
|
||||
marginTop: '10vh'
|
||||
marginTop: '10vh',
|
||||
minHeight: '90vh',
|
||||
height: '100%'
|
||||
}
|
||||
}));
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user