Skip to content

Commit 89bf363

Browse files
authored
fix: display flux correctly in firefox (#4973)
* fix: fixed flux styling issue in firefox
1 parent 8e0bdef commit 89bf363

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

src/tasks/components/RunLogRowFlux.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class RunLogRowFlux extends PureComponent<Props> {
2121
const {run} = this.props
2222

2323
return (
24-
<IndexList.Row>
24+
<IndexList.Row className="run-log--list-row">
2525
<IndexList.Cell>
2626
<span className="run-logs--list-time">
2727
{this.dateTimeString(run.startedAt)}

src/tasks/components/RunLogsList.scss

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
.run-logs--list {
22
width: 100%;
33
max-width: calc(100% - 60px) !important;
4+
height: 100%;
45
}
56

67
.run-logs--list-time {
@@ -19,3 +20,13 @@
1920
width: 100%;
2021
height: 30vh;
2122
}
23+
24+
@supports (-moz-appearance: none) {
25+
tr.run-log--list-row td {
26+
height: 100%;
27+
}
28+
}
29+
30+
tr.run-log--list-row {
31+
height: 30vh;
32+
}

0 commit comments

Comments
 (0)