Using angular material 8.2.0
I have created a dashboard template from the angular material schematics. This creates a number of mat-grid-tile within a mat-grid-list. In each tile there is a mat-card
Now I am trying to fit put a google map and some charts.js into the content section of the cards that are generated.
Since for both the map and the charts I need to specify the height of the container div, I was hoping that simply using height:100% would do it. However when using height:100% on mat-card-content it overflows the parent mat-card.
A simple example demonstrating this is:
https://stackblitz.com/edit/angular-material-ucak6j
Any hints into the issue or a potential workaround is appreciated.