blob: 8db6c2d6d961c6b6b8b71c0b48f584ab660af4f6 (
plain)
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
|
.cf {
display: flex;
margin-left: 0px;
margin-bottom: 5px;
min-height: 36px;
padding:0 2px;
align-items: center;
vertical-align: text-bottom;
white-space: unset !important;
border-radius: 3px;
width: fit-content;
background-color:var(--stab-background-color);
color:var(--main-color);
font-weight:normal;
font-size:0.875rem;
}
.cf code {
font-size: 0.875rem;
background-color: unset;
white-space: unset !important;
}
.cf strong {
margin-left: 3px;
}
|