1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| .labels {
| margin: 1em 0;
| display: flex;
| justify-content: flex-start;
| align-items: center;
| flex-flow: wrap;
|
| &_hidden {
| display: none;
| }
|
| &:not(.labels_inline) {
| margin: 0;
| flex-direction: column;
| align-items: flex-start;
| }
| }
|
|