Card
A card can have 3 sections, title, content, footer. Footer can be used to display any actions that can be performed on the content.
This is a card
You can add card content here. The card body will grow with the content size. Card header and footer are optional.
<div class="card">
<div class="card__header">This is a card</div>
<div class="card__body">
You can add card content here. The card body will grow with the content
size. Card header and footer are optional.
</div>
<div class="card__footer">
<button class="btn btn--primary">Info</button>
<button class="btn btn--tertiary">Like</button>
</div>
</div>