Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit ccf0ad6

Browse files
jonnybelkodiakhq[bot]
andauthoredApr 16, 2020
fix(data-table): add missing background color (white) (#1321)
Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
1 parent 39698ef commit ccf0ad6

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed
 

‎packages/components/data-table/src/data-table.styles.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ const TableGrid = styled.table`
1818
position: relative;
1919
z-index: 0;
2020
display: grid;
21+
background-color: ${vars.colorSurface};
2122
/* stylelint-disable function-whitespace-after */
2223
grid-template-columns: ${(props) =>
2324
props.columns.map((column) => column.width || 'auto').join(' ')};