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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
| .data-view-dm {
| flex: 1;
| display: flex;
| overflow: hidden;
| flex-direction: column;
| background: var(--color-neutral-background);
| margin-bottom: 2.5rem;
| }
|
| .no-results {
| height: 100%;
| display: flex;
| flex-direction: column;
| justify-content: center;
| align-items: center;
| position: relative;
|
| }
|
| .syncInProgress {
| height: 100%;
| display: flex;
| flex-direction: column;
| justify-content: center;
| align-items: center;
| font-size: 16px;
| text-align: center;
| color: var(--color-neutral-content-subtler);
|
| .button-dm {
| color: var(--primary_link);
| padding: 8px 16px;
| border: 1px solid var(--primary_link);
| border-radius: 4px;
| box-shadow: none;
| font-size: 1rem;
| font-weight: 500;
| line-height: 24px;
| }
|
| &__text {
| margin-bottom: 1em;
| }
| }
|
|