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
58
59
60
61
62
63
64
65
66
| .storage-settings {
| &__controls {
| display: flex;
| flex-direction: column;
| gap: 8px;
| margin-bottom: 32px;
| }
|
| &__empty {
| height: 100px;
| display: flex;
| font-size: 16px;
| font-weight: 500;
| border-radius: 5px;
| align-items: center;
| justify-content: center;
| flex-direction: column;
| color: var(--color-neutral-content-subtler);
| }
|
| &__submit {
| display: flex;
| margin-top: 32px;
| align-items: center;
| justify-content: space-between;
|
| &+.inline-error {
| margin-top: 32px;
| }
| }
|
| &__info {
| display: flex;
| align-items: center;
| color: #d00;
| font-size: 14px;
| line-height: 22px;
|
| &_valid {
| color: rgb(0 0 0 / 40%);
| }
| }
|
| &__sync {
| display: flex;
| margin-top: 16px;
| justify-content: flex-start;
| align-items: center;
| }
|
| &__sync-count {
| margin-top: 14px;
| line-height: 18px;
| font-size: 14px;
| opacity: 0.7;
| }
|
| &__summary {
| .dl__dd {
| min-width: 0;
| white-space: normal;
| overflow-wrap: anywhere;
| word-break: break-word;
| }
| }
| }
|
|