Removed border bottom on task list (#3641)
* #3640 remove border bottom in task list * removing border bottom from only last child
This commit is contained in:
@ -22,6 +22,10 @@ const StyledContainer = styled.div`
|
|||||||
height: ${({ theme }) => theme.spacing(12)};
|
height: ${({ theme }) => theme.spacing(12)};
|
||||||
min-width: calc(100% - ${({ theme }) => theme.spacing(8)});
|
min-width: calc(100% - ${({ theme }) => theme.spacing(8)});
|
||||||
padding: 0 ${({ theme }) => theme.spacing(4)};
|
padding: 0 ${({ theme }) => theme.spacing(4)};
|
||||||
|
|
||||||
|
&:last-child {
|
||||||
|
border-bottom: 0;
|
||||||
|
}
|
||||||
`;
|
`;
|
||||||
|
|
||||||
const StyledTaskBody = styled.div`
|
const StyledTaskBody = styled.div`
|
||||||
|
|||||||
Reference in New Issue
Block a user