Archived
1
0
This repository has been archived on 2024-05-04. You can view files and clone it, but cannot push or open issues or pull requests.
cyca/resources/css/components/badge.css
2022-01-12 00:35:37 +01:00

28 lines
609 B
CSS
Executable File
Vendored

.badge {
@apply rounded-full text-xs flex items-center whitespace-nowrap px-2 py-0.5 space-x-1;
&.default {
@apply bg-gray-100 text-gray-500;
@apply dark:bg-gray-500 dark:text-white;
}
&.success {
@apply bg-green-500 text-white;
@apply dark:bg-green-800 dark:text-white;
}
&.danger {
@apply bg-red-500 text-white;
@apply dark:bg-red-800 dark:text-white;
}
&.warning {
@apply bg-orange-500 text-white;
}
&.info {
@apply bg-blue-400 text-white;
@apply dark:bg-blue-800 dark:text-white;
}
}