-
-
Notifications
You must be signed in to change notification settings - Fork 77
Expand file tree
/
Copy pathIssue.module.css
More file actions
104 lines (87 loc) · 1.5 KB
/
Copy pathIssue.module.css
File metadata and controls
104 lines (87 loc) · 1.5 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
/* stylelint-disable */
.issueFormContainer {
margin: 0 auto;
width: 100%;
padding: 5px;
background-color: white;
}
.darkModeIssueFormContainer{
color: white;
}
.redText {
color: #980101;
display: flex;
justify-content: center;
}
.redAsterisk {
color: #e00000;
}
.issueTitleText {
text-align: center;
padding-top: 3.5vh;
padding-bottom: 3.5vh;
font-weight: bold;
font-size: 20px;
}
.consequencesText {
text-align: left;
}
.subTitleText {
display: flex;
flex-direction: row;
color: #2e5061;
font-weight: bold;
}
.characterCounterText {
position: absolute;
bottom: 0;
right: 1.2em;
font-size: 12px;
color: #999;
}
.positionRelative {
position: relative;
}
.issueFormOverrideCss {
max-width: inherit !important;
}
.issueRadioButtons {
display: flex;
justify-content: left;
margin-top: auto;
padding-left: 3em;
padding-right: 27em;
}
.consequencesCheckboxes {
padding: 0 2.5em;
}
.consequencesCheckboxes > .col {
width: 100%;
flex-grow: 1;
}
.issueDate {
align-items: center;
padding: 0 3em;
}
input.issueDateInput {
width: 160px;
}
button.issueFormButtonCancel {
font-size: 20px;
height: 50px;
width: 50%;
background-color: #fff !important;
color: #2e5061 !important;
border-color: #2e5061 !important;
}
.rowMarginBottom {
margin-bottom: 1em;
}
button.issueFormButtonSubmit {
height: 50px;
width: 50%;
background-color: #2e5061 !important;
color: #fff !important;
border-color: #2e5061 !important;
font-size: 20px;
}