This is how I've set up my webpage design.
<div layout="column" layout-fill ng-controller="MainCtrl as mc">
<header>
<md-toolbar md-scroll-shrink>
<div layout="row" layout-align="center center" flex>
HEADER INFORMATION
</div>
</md-toolbar>
</header>
<main>
<div ui-view>
</div>
</main>
<footer>
<md-toolbar class="md-scroll-shrink">
<div layout="row" layout-align="center center" flex>
FOOTER INFORMATION
</div>
</md-toolbar>
</footer>
</div>
Currently, the footer is positioned right after the main content. Depending on the size of the main content, the footer either appears in the middle of the screen or below the page height.
I aim to have the footer fixed at the bottom of the screen at all times. Additionally, I want there to be a scroll within the main content section based on its size.
If anyone has any suggestions or solutions, I would greatly appreciate it!