I am facing an issue with a card that contains a nested table. The card expands and shrinks based on the size of the table inside it. I want to prevent the card from shrinking when the table has no data or just one entry. Instead, I need the card to maintain a minimum height so it doesn't collapse. However, it should still expand when more rows are added to the table.
Here is the code I have:
const BaseCard = () =>
<div id="card-containerBase">
<Card
style={{
width: '100%',
margin: 'auto',
padding: '10px',
backgroundColor: '#ECEFF1',
}}
>