blob: aad628aac802dbbcb60082a98cc650389854e2ae (
plain)
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
|
.vsp-component-questionnaire-view {
input[type='radio'], input[type='checkbox'] {
&:before {
border: 1px solid $dark-gray;
cursor: pointer;
}
&:checked:before {
border: 1px solid $blue;
}
}
.component-questionnaire-validation-form {
.section-sub-title {
@extend .heading-5;
padding-bottom: 10px;
}
.section-field {
textarea {
height: 80px;
}
}
.rows-section {
.row-flex-components {
display: flex;
}
.vertical-flex {
flex-direction: column;
.control-label {
@extend .body-2-medium;
}
.radio-options-content-row {
display: flex;
margin-top: -4px;
.validation-input-wrapper {
width: 240px;
margin-right: 7px;
& > .form-group {
display: flex;
}
.form-group .radio {
width: auto;
margin-right: 0;
}
}
}
}
}
}
}
|