home structure

This commit is contained in:
2021-01-11 14:33:26 +01:00
parent 4b6c5f1d8d
commit dd65c86df2
5 changed files with 39 additions and 20 deletions
+1 -1
View File
@@ -14,7 +14,7 @@ const useStyles = makeStyles((theme) => ({
container: {
minHeight: '100vh',
paddingTop: '2rem',
paddingBottom: '2rem',
// paddingBottom: '2rem',
fallbacks: [
{ minHeight: '-moz-calc(100% - 128px)' },
{ minHeight: '-webkit-calc(100% - 128px)' },
@@ -9,6 +9,7 @@ const useStyles = makeStyles((theme) => ({
icon: {
width: '5rem',
height: '5rem',
[theme.breakpoints.down('md')]: { width: '3rem', height: '3rem' },
},
}));
@@ -43,15 +44,8 @@ const Footer = (props) => {
return (
<Grid container justify="center" alignItems="center" id="footer">
<ScrollTop {...props}>
<KeyboardArrowUpIcon
className={classes.icon}
style={{
width: '5rem',
height: '5rem',
}}
/>
<KeyboardArrowUpIcon className={classes.icon} />
</ScrollTop>
{/* <div style={{ height: '30rem' }} /> */}
</Grid>
);
};