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