blob: 4dbc2b2f08180a1325d377aa02b1f2b60ad2abc3 (
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
|
@import "../../colors.scss";
.pcap-pane {
display: flex;
flex-direction: column;
.pcap-list {
overflow: hidden;
flex: 1;
.section-content {
height: 100%;
}
.section-table {
height: calc(100% - 30px);
}
.table-cell-action {
font-size: 13px;
font-weight: 600;
}
}
.upload-actions {
display: flex;
align-items: flex-end;
margin-bottom: 20px;
}
.upload-options {
flex: 1;
span {
font-size: 0.9em;
}
}
}
|