File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed
packages/react-renderer-demo/src/components Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -35,6 +35,7 @@ const Form = () => (
35
35
const useStyles = makeStyles ( theme => ( {
36
36
cardsContainer : {
37
37
backgroundColor : theme . palette . common . white ,
38
+ minHeight : '100vh' ,
38
39
} ,
39
40
codeSnippet : {
40
41
margin : '8px 0px' ,
Original file line number Diff line number Diff line change @@ -52,8 +52,6 @@ const useStyles = makeStyles(theme => ({
52
52
} ,
53
53
contentWrapper : {
54
54
paddingTop : 86 ,
55
- paddingRight : 32 ,
56
- paddingLeft : 32 ,
57
55
paddingBottom : 32 ,
58
56
} ,
59
57
menuButton : {
@@ -214,10 +212,15 @@ const Layout = ({ children }) => {
214
212
</ a >
215
213
</ div >
216
214
< div className = { classes . contentWrapper } >
217
- { children }
215
+ < div style = { {
216
+ paddingRight : 32 ,
217
+ paddingLeft : 32 ,
218
+ } } >
219
+ { children }
220
+ </ div >
218
221
< ConnectedLinks />
222
+ < Footer />
219
223
</ div >
220
- < Footer />
221
224
</ main >
222
225
</ div >
223
226
</ MenuContext . Provider >
You can’t perform that action at this time.
0 commit comments