File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed
Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -41,7 +41,6 @@ const createTheme = (dark: boolean) => createMuiTheme({
4141
4242const useStyles = makeStyles ( theme => ( {
4343 head : {
44- marginTop : theme . spacing ( 3 ) ,
4544 marginBottom : theme . spacing ( 2 )
4645 } ,
4746 select : {
Original file line number Diff line number Diff line change @@ -26,6 +26,10 @@ type Props = {
2626} ;
2727
2828const useStyles = makeStyles ( theme => ( {
29+ content : {
30+ paddingTop : theme . spacing ( 3 ) ,
31+ paddingBottom : theme . spacing ( 3 )
32+ } ,
2933 icon : {
3034 marginRight : theme . spacing ( 2 )
3135 } ,
@@ -117,7 +121,9 @@ function Layout(props: Props) {
117121 </ Snackbar >
118122 ) ) }
119123
120- { props . children }
124+ < div className = { classes . content } >
125+ { props . children }
126+ </ div >
121127 </ >
122128 ) ;
123129}
You can’t perform that action at this time.
0 commit comments