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:
Jeet Desai
2024-01-30 14:28:51 +05:30
committed by GitHub
parent da8dd671d1
commit c9a19fd4d9

View File

@ -22,6 +22,10 @@ const StyledContainer = styled.div`
height: ${({ theme }) => theme.spacing(12)};
min-width: calc(100% - ${({ theme }) => theme.spacing(8)});
padding: 0 ${({ theme }) => theme.spacing(4)};
&:last-child {
border-bottom: 0;
}
`;
const StyledTaskBody = styled.div`