blob: ce282271737208c2ef9a1ef78fa80c362c3d7d57 (
plain) (
blame)
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
|
@import '../../colors.scss';
.pane-container {
background-color: $color-primary-3;
padding: 10px 10px 0;
height: 100%;
.section-header {
background-color: $color-primary-2;
padding: 5px 10px;
height: 31px;
font-weight: 500;
font-size: 14px;
.api-response {
float: right;
}
}
.section-table {
margin-top: 10px;
.table-row {
background-color: $color-primary-0;
border-top: 3px solid $color-primary-3;
border-bottom: 3px solid $color-primary-3;
}
.table-cell-action {
font-size: 13px;
font-weight: 600;
}
}
.section-content {
background-color: $color-primary-0;
padding: 10px;
}
th {
background-color: $color-primary-2;
border-top: 3px solid $color-primary-3;
border-bottom: 3px solid $color-primary-3;
font-size: 13.5px;
position: sticky;
top: 10px;
padding: 5px;
}
.upload-actions {
display: flex;
align-items: flex-end;
margin-bottom: 20px;
}
.upload-options {
flex: 1;
span {
font-size: 0.9em;
}
}
}
|