Skip to content

Commit

Permalink
fix(tables): force prop border in TableWithSelectableRows.Td
Browse files Browse the repository at this point in the history
  • Loading branch information
ivangabriele committed May 28, 2024
1 parent 20d9b64 commit 9fbd1ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tables/TableWithSelectableRows/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ const Td = styled(SimpleTable.Td)<{
$hasRightBorder?: boolean
}>`
background-color: ${p => p.theme.color.cultured};
${p => !!p.$hasRightBorder && `border-right: 1px solid ${p.theme.color.lightGray};`}
${p => !!p.$hasRightBorder && `border-right: 1px solid ${p.theme.color.lightGray} !important;`}
padding: 9px 16px;
`

Expand Down

0 comments on commit 9fbd1ee

Please sign in to comment.