feature: fix default padding of table

This commit is contained in:
Sammy Teillet 2023-04-19 15:24:18 +02:00
parent 6e9b612409
commit d1f05993be
No known key found for this signature in database
GPG Key ID: 687E513E74D28696

View File

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