blob: 5a2f2fcad91eb176c2611cff9b11c874f5577d0c (
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
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
|
@import '../views/global/globalCssVariables';
.issue-list-wrapper {
position: relative;
min-width: 250px;
background-color: $light-blue;
overflow-y: scroll;
}
.issue-list {
display: flex;
align-items: center;
justify-content: space-between;
padding: 5px;
margin: 5px;
border-radius: 5px;
border: 1px solid grey;
background-color: lightgoldenrodyellow;
}
// issue should pop up when the user hover over the issue
.issue-list:hover {
box-shadow: 2px;
cursor: pointer;
border: 3px solid #252b33;
}
.issue-content {
background-color: white;
padding: 10px;
flex: 1 1 auto;
overflow-y: scroll;
}
.issue-title {
font-size: 20px;
font-weight: 600;
color: black;
}
.issue-body {
padding: 0 10px;
width: 100%;
text-align: left;
}
.issue-body > * {
margin-top: 5px;
}
.issue-body img,
.issue-body video {
display: block;
max-width: 100%;
}
.report-issue-fab {
position: fixed;
bottom: 20px;
right: 20px;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
}
.loading-center {
margin: auto 0;
}
.settings-content label {
margin-top: 10px;
}
.report-disclaimer {
font-size: 8px;
color: grey;
padding-right: 50px;
font-style: italic;
text-align: left;
}
.flex-select {
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
}
|