feature: fix color of border

This commit is contained in:
Sammy Teillet
2023-04-19 15:23:09 +02:00
parent 6f9506b924
commit 6e9b612409

View File

@ -23,19 +23,19 @@ const StyledTable = styled.table`
border-spacing: 0;
th {
border-top: 1px solid #f5f5f5;
border-bottom: 1px solid #f5f5f5;
border-top: 1px solid ${(props) => props.theme.primaryBorder};
border-bottom: 1px solid ${(props) => props.theme.primaryBorder};
text-align: left;
:not(:last-child) {
border-right: 1px solid #f5f5f5;
border-right: 1px solid ${(props) => props.theme.primaryBorder};
}
}
td {
border-bottom: 1px solid #f5f5f5;
border-bottom: 1px solid ${(props) => props.theme.primaryBorder};
text-align: left;
:not(:last-child) {
border-right: 1px solid #f5f5f5;
border-right: 1px solid ${(props) => props.theme.primaryBorder};
}
}
`;