feature: change the border color again

This commit is contained in:
Sammy Teillet
2023-04-19 15:45:46 +02:00
parent a361d7732e
commit 0f779f9d43
2 changed files with 6 additions and 6 deletions

View File

@ -8,7 +8,7 @@ type OwnProps = {
};
const Container = styled.span`
margin-left: 4px;
margin-left: ${(props) => props.theme.spacing(2)};
`;
function ClickableCell({ href, children }: OwnProps) {

View File

@ -25,21 +25,21 @@ const StyledTable = styled.table`
th {
color: ${(props) => props.theme.text40};
padding: 0;
border-top: 1px solid ${(props) => props.theme.primaryBorder};
border-bottom: 1px solid ${(props) => props.theme.primaryBorder};
border-top: 1px solid ${(props) => props.theme.tertiaryBackground};
border-bottom: 1px solid ${(props) => props.theme.tertiaryBackground};
text-align: left;
:not(:last-child) {
border-right: 1px solid ${(props) => props.theme.primaryBorder};
border-right: 1px solid ${(props) => props.theme.tertiaryBackground};
}
}
td {
color: ${(props) => props.theme.text80};
padding: 0;
border-bottom: 1px solid ${(props) => props.theme.primaryBorder};
border-bottom: 1px solid ${(props) => props.theme.tertiaryBackground};
text-align: left;
:not(:last-child) {
border-right: 1px solid ${(props) => props.theme.primaryBorder};
border-right: 1px solid ${(props) => props.theme.tertiaryBackground};
}
}
`;