blob: b788a86e44fd4040f20669b6454cec3060c54be0 (
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
|
.software-product-type-modal {
.modal-dialog {
@extend .modal-lg !optional;
.modal-body {
padding: 0;
}
.validation-form-content {
padding: 50px;
.software-product-form-row {
display: flex;
justify-content: space-between;
margin-bottom: 20px;
.software-product-inline-section {
padding: 0 20px;
flex: 45%;
.validation-input-wrapper {
.field-section {
@extend .body-2-semibold;
margin-bottom: 23px;
color: $black;
}
textarea {
height: 191px;
}
select optgroup[label] {
color: $dark-blue;
}
option {
color: black;
}
}
}
}
}
.validation-buttons {
padding: 20px 50px;
}
}
}
|