Overview
This guide provides how to add cards from design system.
To change the color, you should change the class ‘card-green’ on ‘card-blue’ or other.
Class ‘grid-column-5’ means: 1 row consists 5 cards
Each color card has the following code.
1
2
3
4
5
6
7
<div class="d-grid grid-column-5 gap-3">
<div class="card card-sm card-green">
<div class="card-header">card-sm</div>
<div class="card-body">card-green</div>
</div>
...
</div>