24 lines
467 B
CSS
24 lines
467 B
CSS
.upload-status-badge {
|
|
@apply inline-flex items-center rounded-md px-1.5 py-0.5 text-xs font-medium;
|
|
}
|
|
|
|
.upload-status-badge--default {
|
|
@apply bg-gray-100 text-gray-600;
|
|
}
|
|
|
|
.upload-status-badge--new {
|
|
@apply bg-yellow-100 text-yellow-800;
|
|
}
|
|
|
|
.upload-status-badge--checked {
|
|
@apply bg-green-100 text-green-700;
|
|
}
|
|
|
|
.upload-status-badge--error {
|
|
@apply bg-red-100 text-red-700;
|
|
}
|
|
|
|
.upload-status-badge--paid {
|
|
@apply bg-blue-100 text-blue-700;
|
|
}
|