front/app,core: fix horizontal scroll

This commit is contained in:
Patrik Oldsberg
2020-02-07 09:46:50 +01:00
parent 58ad9cd322
commit 568028dfbf
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -30,7 +30,7 @@ const useStyles = makeStyles(theme => ({
// FIXME: Don't used a fixed width here
gridTemplateColumns: '64px auto',
gridTemplateRows: '1fr',
width: '100vw',
width: '100%',
height: '100vh',
},
}));
@@ -103,7 +103,7 @@ const styles = theme => ({
gridArea: 'pageHeader',
padding: theme.spacing(3),
minHeight: 118,
width: '100vw',
width: '100%',
boxShadow: '0 0 8px 3px rgba(20, 20, 20, 0.3)',
position: 'relative',
zIndex: 100,