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
29
| .badge-dm {
| height: 24px;
| font-size: 16px;
| border-radius: 30px;
| display: inline-flex;
| align-items: center;
| justify-content: center;
| padding: 0 7px;
| color: var(--color-neutral-background);
| background-color: var(--accent_color);
|
| &_size_small {
| height: 16px;
| font-size: 12px;
| padding: 0 5px;
| }
|
| &_size_medium {
| height: 24px;
| font-size: 16px;
| padding: 0 7px;
| }
|
| &_size_large {
| height: 32px;
| font-size: 18px;
| padding: 0 10px;
| }
| }
|
|