I need assistance with keeping my footer at the bottom of the browser window when there is not enough content in the main section. I do not want a sticky footer and am looking for an angular material solution for this. Unfortunately, I have been unable to locate one.
Any help is appreciated!
<body layout="column" >
<md-toolbar >
</md-toolbar>
<div layout="row" flex>
<md-sidenav class="md-sidenav-left md-whiteframe-z2 " flex >
</md-sidenav>
<md-content flex layout="row" layout-align="center start">
<div style="max-width: 1600px;" flex layout="column" layout-fill >
<div >
This is the primary content
</div>
<div >
This is the footer
</div>
</div>
</md-content>
</div>
</body>
You can view the code here on jsfiddle