Skip to content
This repository has been archived by the owner on Jun 5, 2023. It is now read-only.

Commit

Permalink
fix(Table): Fix table header rendering, #143
Browse files Browse the repository at this point in the history
  • Loading branch information
diondiondion committed Aug 2, 2021
1 parent 06ae63b commit a17639f
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions src/Table/shared/TableColumnHeader/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,10 @@ export const Wrapper = withTableContext(styled.th.withConfig({
&::after {
content: '';
position: absolute;
/* Compensating for table element's transparent 1px border
* which is needed for drawing a border around highlighted rows */
top: -1px;
top: 0;
bottom: 0;
left: -1px;
right: -1px;
left: 0;
right: 0;
z-index: ${p => p.theme.globals.z.below};
border-bottom: ${p => borderValue(p.theme)};
${headerBackgroundColor}
Expand Down

0 comments on commit a17639f

Please sign in to comment.