Using Angular Material 2 presents a challenge for me: While I can align the text in the sidenav to center, I am struggling to align the button correctly. https://i.sstatic.net/vjHw4.png
<md-sidenav-layout fullscreen>
<md-sidenav #start mode="side">
<md-sidenav-container align="center">
<h3>Simple Todos</h3>
<button md-raised-button (click)="start.close()">Close</button>
<p>One more text here</p>
</md-sidenav-container>
</md-sidenav>
<md-content>
<md-toolbar color="primary">
<button (click)="start.toggle()" md-icon-button [disableRipple]="true"><md-icon>menu</md-icon></button>
<!-- This fills the remaining space of the current row -->
<span class="example-fill-remaining-space"></span>
</md-toolbar>
<h3>Hello world</h3>
</md-content>
</md-sidenav-layout>