mirror of
https://github.com/twentyhq/twenty.git
synced 2024-12-23 20:13:21 +03:00
feature: fix default padding of table
This commit is contained in:
parent
6e9b612409
commit
d1f05993be
@ -23,6 +23,7 @@ const StyledTable = styled.table`
|
|||||||
border-spacing: 0;
|
border-spacing: 0;
|
||||||
|
|
||||||
th {
|
th {
|
||||||
|
padding: 0;
|
||||||
border-top: 1px solid ${(props) => props.theme.primaryBorder};
|
border-top: 1px solid ${(props) => props.theme.primaryBorder};
|
||||||
border-bottom: 1px solid ${(props) => props.theme.primaryBorder};
|
border-bottom: 1px solid ${(props) => props.theme.primaryBorder};
|
||||||
text-align: left;
|
text-align: left;
|
||||||
@ -32,6 +33,7 @@ const StyledTable = styled.table`
|
|||||||
}
|
}
|
||||||
|
|
||||||
td {
|
td {
|
||||||
|
padding: 0;
|
||||||
border-bottom: 1px solid ${(props) => props.theme.primaryBorder};
|
border-bottom: 1px solid ${(props) => props.theme.primaryBorder};
|
||||||
text-align: left;
|
text-align: left;
|
||||||
:not(:last-child) {
|
:not(:last-child) {
|
||||||
|
Loading…
Reference in New Issue
Block a user