We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e0bdef commit 89bf363Copy full SHA for 89bf363
src/tasks/components/RunLogRowFlux.tsx
@@ -21,7 +21,7 @@ class RunLogRowFlux extends PureComponent<Props> {
21
const {run} = this.props
22
23
return (
24
- <IndexList.Row>
+ <IndexList.Row className="run-log--list-row">
25
<IndexList.Cell>
26
<span className="run-logs--list-time">
27
{this.dateTimeString(run.startedAt)}
src/tasks/components/RunLogsList.scss
@@ -1,6 +1,7 @@
1
.run-logs--list {
2
width: 100%;
3
max-width: calc(100% - 60px) !important;
4
+ height: 100%;
5
}
6
7
.run-logs--list-time {
@@ -19,3 +20,13 @@
19
20
height: 30vh;
+
+@supports (-moz-appearance: none) {
+ tr.run-log--list-row td {
+ }
28
+}
29
30
+tr.run-log--list-row {
31
+ height: 30vh;
32
0 commit comments