20 lines
304 B
CSS
Vendored
20 lines
304 B
CSS
Vendored
.alert {
|
|
@apply px-4;
|
|
@apply py-2;
|
|
@apply text-gray-700;
|
|
@apply border-0;
|
|
@apply border-l-2;
|
|
@apply border-tint-100;
|
|
}
|
|
|
|
.alert-warning {
|
|
@apply bg-yellow-100;
|
|
@apply border-yellow-400;
|
|
}
|
|
|
|
.alert-empty {
|
|
@apply text-tint-500;
|
|
@apply py-8;
|
|
@apply text-center;
|
|
}
|