-
Notifications
You must be signed in to change notification settings - Fork 124
Expand file tree
/
Copy pathinteractive-builder.scss
More file actions
86 lines (70 loc) · 1.47 KB
/
interactive-builder.scss
File metadata and controls
86 lines (70 loc) · 1.47 KB
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
@use '@carbon/colors';
@use '@carbon/layout';
@use '@carbon/type';
.container {
overflow-y: scroll;
overflow-x: hidden;
height: 95vh;
padding-right: layout.$spacing-07;
:global(.cds--modal-content:focus) {
outline: none;
}
:global(.cds--tooltip) {
z-index: 9999 !important;
}
}
.editableFieldsContainer {
margin: layout.$spacing-05 0;
border-bottom: 1px solid colors.$gray-20;
}
.addQuestionButton {
margin: layout.$spacing-04 0;
}
.header {
margin: layout.$spacing-07 0;
}
.sectionLabel {
@include type.type-style('heading-02');
}
.explainer {
margin: layout.$spacing-05 layout.$spacing-03;
p {
margin: layout.$spacing-06 0;
&:first-of-type {
@include type.type-style('heading-04');
}
}
}
.sectionExplainer {
margin: layout.$spacing-05 layout.$spacing-03;
}
.startButton {
margin: layout.$spacing-05 0;
}
.editorContainer {
display: flex;
justify-content: space-between;
margin: layout.$spacing-02 layout.$spacing-03;
padding-right: layout.$spacing-03;
align-items: center;
width: 100%;
}
.addSectionButton {
margin: layout.$spacing-05;
}
.validationErrorMessage {
margin-left: layout.$spacing-05;
color: colors.$red-60;
font-size: layout.$spacing-03;
}
.answerErrors {
display: flex;
flex-direction: column;
gap: layout.$spacing-03;
margin-left: layout.$spacing-06;
margin-top: layout.$spacing-05;
font-size: layout.$spacing-03;
}
.dragOverlay {
background-color: rgba(255, 255, 255, 0.6);
}