Skip to content

Commit

Permalink
fix: table colors on select
Browse files Browse the repository at this point in the history
  • Loading branch information
panvourtsis committed Sep 24, 2020
1 parent c57ef3f commit 9512e1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Table/components/TableRow/TableRow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const TableRow: React.FC<Props> = ({ nested, selected, children, ...rest }) => {
<tr
css={[
{
backgroundColor: selected ? theme.palette.flat.lightGray[200] : undefined,
backgroundColor: selected ? theme.palette.flat.lightGray[100] : undefined,
paddingTop: theme.spacing.xsm,
paddingBottom: theme.spacing.xsm,
'> td': {
Expand Down

0 comments on commit 9512e1c

Please sign in to comment.