From c9a19fd4d90546a159d46dfed8d22746e1dc02fe Mon Sep 17 00:00:00 2001 From: Jeet Desai <52026385+jeet1desai@users.noreply.github.com> Date: Tue, 30 Jan 2024 14:28:51 +0530 Subject: [PATCH] Removed border bottom on task list (#3641) * #3640 remove border bottom in task list * removing border bottom from only last child --- .../src/modules/activities/tasks/components/TaskRow.tsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/packages/twenty-front/src/modules/activities/tasks/components/TaskRow.tsx b/packages/twenty-front/src/modules/activities/tasks/components/TaskRow.tsx index 2bf25b01d..35cc249bc 100644 --- a/packages/twenty-front/src/modules/activities/tasks/components/TaskRow.tsx +++ b/packages/twenty-front/src/modules/activities/tasks/components/TaskRow.tsx @@ -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`