feature: clickableCell left space should be inside the border
This commit is contained in:
@ -8,7 +8,7 @@ type OwnProps = {
|
||||
};
|
||||
|
||||
const Container = styled.span`
|
||||
margin-left: ${(props) => props.theme.spacing(2)};
|
||||
padding-left: ${(props) => props.theme.spacing(2)};
|
||||
`;
|
||||
|
||||
function ClickableCell({ href, children }: OwnProps) {
|
||||
|
||||
@ -113,12 +113,10 @@ const columns = [
|
||||
id={`person-selected-${props.row.original.email}`}
|
||||
name={`person-selected${props.row.original.email}`}
|
||||
/>
|
||||
<ClickableCell href="#">
|
||||
<PersonChip
|
||||
name={props.row.original.fullName}
|
||||
picture={props.row.original.picture}
|
||||
/>
|
||||
</ClickableCell>
|
||||
<PersonChip
|
||||
name={props.row.original.fullName}
|
||||
picture={props.row.original.picture}
|
||||
/>
|
||||
</HorizontalyAlignedContainer>
|
||||
),
|
||||
}),
|
||||
|
||||
Reference in New Issue
Block a user