From 9fbd1ee51236b6a7da47ff410cb2b00e95ddc66e Mon Sep 17 00:00:00 2001 From: Ivan Gabriele Date: Tue, 28 May 2024 08:38:51 +0200 Subject: [PATCH] fix(tables): force prop border in TableWithSelectableRows.Td --- src/tables/TableWithSelectableRows/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tables/TableWithSelectableRows/index.tsx b/src/tables/TableWithSelectableRows/index.tsx index 76bcc145..61760a15 100644 --- a/src/tables/TableWithSelectableRows/index.tsx +++ b/src/tables/TableWithSelectableRows/index.tsx @@ -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; `