feature: fix table layout

This commit is contained in:
Sammy Teillet
2023-04-19 14:46:54 +02:00
parent 43e71c6c93
commit b0b81ba40d
2 changed files with 1 additions and 2 deletions

View File

@ -11,7 +11,7 @@ const StyledTitle = styled.div`
display: flex;
flex-direction: row;
align-items: center;
height: 40px;
height: ${(props) => props.theme.spacing(8)};
color: ${(props) => props.theme.text60};
font-weight: 500;
padding-left: ${(props) => props.theme.spacing(2)};

View File

@ -28,7 +28,6 @@ const StyledTable = styled.table`
border: 1px solid #f5f5f5;
font-size: 12px;
text-align: left;
padding: 11px 0 11px 4px;
}
`;