1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| $size: 20px;
|
| .badge {
| height: $size;
| min-width: $size;
| border-radius: $size / 2;
| line-height: $size;
| padding: 0 6px;
| flex-shrink: 0;
| font-size: 12px;
| font-weight: normal;
| text-align: center;
| white-space: nowrap;
| background: var(--color-neutral-content-subtler);
| color: var(--color-neutral-background);
| box-shadow: 0 0 0 1px var(--color-neutral-background);
| }
|
|