blob: 7c7bcd2c127ba105db082520b8025dae80d24496 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
.card {
@apply border-b border-neutral-300;
}
.cardBody {
@apply flex flex-row items-center gap-x-4 p-4;
}
.name {
@apply font-medium;
}
.description {
@apply text-sm text-neutral-500 flex gap-x-1;
}
|