Is it possible to customize the heights of Nebular card front and back individually, rather than having them automatically adjust to match the content? For example, setting a specific height for each side regardless of the amount of text or content on them.
<nb-flip-card [showToggleButton]="false" [flipped]="flipped">
<nb-card-front>
<nb-card style="height: 300px">
<nb-card-body>
<app-home></app-home>
</nb-card-body>
</nb-card>
</nb-card-front>
<nb-card-back style="height: 200px">
<nb-card >
<nb-card-body>
<app-about></app-about>
</nb-card-body>
</nb-card>
</nb-card-back>
</nb-flip-card>