I have been experimenting with various methods in CSS to override the existing side nav component in Angular Material 2.
mat-sidenav-container {
background: white;
bottom: 0px !important; /* <---- no success */
}
mat-sidenav {
width: 300px;
height: 500px;
padding-left:20px; /* Unsure why content exceeds boundaries*/
bottom: 0px !important; /* <---- no success */
}
I am attempting to make the side nav content start from the bottom in this example, but I am struggling to override any elements in this Angular Material 2 component.