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
45
46
47
48
49
50
51
52
53
54
55
56
57
| .empty-models-list {
| width: 100%;
| height: calc(100vh - var(--header-height));
| display: flex;
| align-items: center;
| justify-content: center;
|
| &__content {
| display: flex;
| width: 596px;
| padding: 32px;
| flex-direction: column;
| justify-content: center;
| align-items: center;
| gap: 16px;
| border-radius: 8px;
| border: 1px dashed var(--color-neutral-border);
| background: var(--color-neutral-emphasis-subtle);
| }
|
| &__heidi {
| width: 193px;
| color: var(--color-neutral-background-bold);
|
| svg {
| width: 100%;
| height: 100%;
| }
| }
|
| &__title {
| color: var(--surface-on, #262626);
| text-align: center;
|
| /* title/large */
| font-size: 22px;
| font-style: normal;
| font-weight: 400;
| line-height: 28px;
|
| /* 127.273% */
| }
|
| &__caption {
| color: var(--surface-on-dim, #666);
| text-align: center;
|
| /* body/large */
| font-size: 16px;
| font-style: normal;
| font-weight: 400;
| line-height: 24px;
|
| /* 150% */
| letter-spacing: 0.5px;
| }
| }
|
|