Skip to content

Commit 568279f

Browse files
committed
Set vertical alignment of content in table cells
1 parent ed7e428 commit 568279f

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

client/components/TestManagement/StatusSummaryRow/index.jsx

+5-4
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,6 @@ const PhaseText = styled.span`
3030
}
3131
`;
3232

33-
const NoPhaseText = styled.span`
34-
margin-left: 12px;
35-
`;
36-
3733
const PhaseDot = styled.span`
3834
display: inline-block;
3935
height: 10px;
@@ -55,6 +51,11 @@ const PhaseDot = styled.span`
5551
}
5652
`;
5753

54+
const NoPhaseText = styled.span`
55+
margin-left: 12px;
56+
margin-right: 12px;
57+
`;
58+
5859
const StatusSummaryRow = ({ reportResult, testPlanVersion }) => {
5960
const [bulkUpdateTestPlanReportStatusMutation] = useMutation(
6061
BULK_UPDATE_TEST_PLAN_REPORT_STATUS_MUTATION

client/components/TestManagement/TestManagement.css

+5
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@
55

66
.test-management.table tbody tr th {
77
padding: 20px;
8+
vertical-align: middle;
9+
}
10+
11+
.test-management.table tbody tr td {
12+
vertical-align: middle;
813
}
914

1015
.test-management.table th.phase {

0 commit comments

Comments
 (0)