Reputation: 5235
Card's width is always 100%.
I would adapt mat-card width to fit text width ( with some padding )
<mat-card>Simple card</mat-card>
Upvotes: 4
Views: 14831
Reputation: 1722
You should apply to mat-card
the css I wrote below.
mat-card{
width: fit-content;
}
Upvotes: 9
Reputation: 56
You can simply write some css for mat-card and set the width property as you wish. As example:
mat-card {
width: 50%;
}
Upvotes: 2