23 lines
298 B
CSS
23 lines
298 B
CSS
.card {
|
|
@apply flex flex-col bg-gray-800 shadow-sm rounded-xl;
|
|
}
|
|
|
|
.card-header {
|
|
@apply p-5;
|
|
}
|
|
|
|
.card-header:has(+ .card-body) {
|
|
@apply pb-0;
|
|
}
|
|
|
|
.card-title {
|
|
@apply text-2xl font-semibold text-white;
|
|
}
|
|
|
|
.card-body {
|
|
@apply p-5 text-gray-200;
|
|
}
|
|
|
|
.card-footer {
|
|
@apply p-5;
|
|
} |