index.css 607 B

12345678910111213141516171819202122232425262728
  1. @tailwind components;
  2. @layer components {
  3. .badge {
  4. @apply inline-flex justify-center items-center text-text-tertiary border border-divider-deep
  5. }
  6. .badge-l {
  7. @apply rounded-md gap-1 min-w-6
  8. }
  9. /* m is for the regular button */
  10. .badge-m {
  11. @apply rounded-md gap-[3px] min-w-5
  12. }
  13. .badge-s {
  14. @apply rounded-[5px] gap-0.5 min-w-[18px]
  15. }
  16. .badge.badge-warning {
  17. @apply text-text-warning border border-text-warning
  18. }
  19. .badge.badge-accent {
  20. @apply text-text-accent-secondary border border-text-accent-secondary
  21. }
  22. }