After getting inspiration from the material-ui example of cards, I wanted to create a grid layout with multiple cards. My goal was to make all the cards have equal height (which I achieved using height:100%) and position the footer at the bottom of each card. However, my attempt to use a flex column layout did not produce the desired result. The length of the text in the card is affecting the placement of the footer.
If you would like to take a look, I have created a code example showcasing the issue: https://codesandbox.io/s/material-demo-forked-xijum?file=/index.js
I would appreciate any tips or hints on how to successfully display the footer at the bottom of each card.