diff --git a/src/components/JobTable/ExpandableRow.js b/src/components/JobTable/ExpandableRow.js
index 41534b020..ba12e5c3d 100644
--- a/src/components/JobTable/ExpandableRow.js
+++ b/src/components/JobTable/ExpandableRow.js
@@ -14,9 +14,11 @@ const ExpandableRow = ({ job, isFirst, isLast }) => {
})}
suppressZebraStriping
>
-
- {job.name}
- {jobTypesMap[job.type]}
+
+ {job.name}
+
+ {jobTypesMap[job.type]}
+
)
}
diff --git a/src/components/JobTable/ExpandableRow.module.css b/src/components/JobTable/ExpandableRow.module.css
index 1516fd879..b61efb7c6 100644
--- a/src/components/JobTable/ExpandableRow.module.css
+++ b/src/components/JobTable/ExpandableRow.module.css
@@ -6,6 +6,8 @@
box-shadow: inset 0 5px 4px -4px var(--colors-grey600);
}
-.last {
- box-shadow: inset 0 -5px 4px -4px var(--colors-grey600);
+.last .cell {
+ /* Using important here to override the specificity of styled-jsx's inline styles */
+ /* stylelint-disable-next-line declaration-no-important */
+ border-bottom: 1px solid var(--colors-grey300) !important;
}