File tree Expand file tree Collapse file tree 1 file changed +10
-3
lines changed
packages/react-renderer-demo/src/app/src/components Expand file tree Collapse file tree 1 file changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -45,7 +45,8 @@ const useStyles = makeStyles((theme) => ({
45
45
} )
46
46
} ,
47
47
root : {
48
- display : 'flex'
48
+ display : 'flex' ,
49
+ minHeight : 'calc(100vh - 16px)'
49
50
} ,
50
51
appBar : {
51
52
position : 'fixed' ,
@@ -55,6 +56,10 @@ const useStyles = makeStyles((theme) => ({
55
56
} )
56
57
} ,
57
58
contentWrapper : {
59
+ display : 'flex' ,
60
+ flexDirection : 'column' ,
61
+ justifyContent : 'space-between' ,
62
+ minHeight : '100%' ,
58
63
paddingTop : 86
59
64
} ,
60
65
menuButton : {
@@ -217,8 +222,10 @@ const Layout = ({ children }) => {
217
222
>
218
223
{ children }
219
224
</ div >
220
- < ConnectedLinks />
221
- < Footer />
225
+ < div >
226
+ < ConnectedLinks />
227
+ < Footer />
228
+ </ div >
222
229
</ div >
223
230
</ main >
224
231
</ div >
You can’t perform that action at this time.
0 commit comments