I need assistance in creating a layout using AngularJS and angular-material that includes a vertical scrollbar when necessary:
<div layout="column">
<div> <!-- Occupies 80% of window browser -->
<md-list>
<md-list-item ng-repeat="person in people">
</md-list-item>
</md-list>
</div>
<div> <!-- Occupies 20% of window browser -->
</div>
</div>
I am looking to implement a solution where a vertical scrollbar appears automatically when the list (md-list) exceeds the available space. Any guidance on this matter would be greatly appreciated. Thank you!