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
| .topbar {
| .controls {
| flex: 1;
| height: 100%;
| display: grid;
| grid-auto-columns: 1fr;
| grid-auto-flow: column;
| justify-content: flex-end;
|
| &__tooltip-wrapper {
| button {
| width: 100%;
| }
| }
|
| &__skipped-info {
| display: flex;
| align-items: center;
| justify-content: center;
| font-weight: 500;
| font-size: 16px;
|
| svg {
| margin: 0 8px 0 4px;
| }
| }
|
| .button {
| height: 100%;
| font-size: 16px;
| box-shadow: none;
| border-radius: 0;
| }
| }
|
| .action-dialog {
| height: 278px;
| width: 319px;
| padding: 12px 16px;
| display: flex;
| flex-direction: column;
|
| &__input-title {
| margin-bottom: 4px;
| }
|
| &__input {
| resize: none;
| flex: 1 1 auto;
| margin-bottom: 16px;
| background-color: var(--color-neutral-background);
| font-size: 16px;
| }
|
| &__footer {
| display: flex;
| flex-direction: row;
| justify-content: flex-end;
| }
| }
| }
|
|