blob: b7d00fec05d63aac1b37a8752a2074176ab759b3 (
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;
}
.name {
@apply font-medium;
}
.description {
@apply text-sm text-neutral-500 flex gap-x-1;
}
|