Newer
Older
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
@import "../../../../../../node_modules/ui-frontend-common/sass/variables/colors";
$field-spacing: 15px;
.header {
padding: 30px 60px 0 60px;
}
.content {
padding: 0px 60px 60px 60px;
}
h2 {
font-size: 26px;
line-height: 46px;
margin-top: 23px;
margin-bottom: 37px;
}
.actions {
margin-top: 20px;
display: flex;
}
.actions > button:not(:last-child) {
margin-right: 20px;
}
.form-group {
padding-bottom: 30px;
}
label {
color: $charcoal-grey;
font-size: 15px;
line-height: normal;
margin-bottom: 10px;
display: block;
.required-marker {
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
}
small {
color: #a5a5a5;
font-size: inherit;
}
}
.underline {
text-decoration: underline;
cursor: pointer;
}
.inline-label {
padding-top: 5px;
}
button.primary {
margin-right: 20px;
}
button.back {
margin-top: 60px;
}
button > small {
display: block;
font-size: 12px;
font-weight: 400;
}
.hint {
color: #a5a5a5;
font-size: 15px;
}
.error-message {
color: $red;
font-size: 14px;
margin-bottom: 30px;
}