From 39af374de00dfc0f4d27ec8cfb8736c4a3471c8e Mon Sep 17 00:00:00 2001 From: Weiko Date: Thu, 13 Jun 2024 19:04:53 +0200 Subject: [PATCH] fix timeline activity pagination overflow (#5861) ## Before Screenshot 2024-06-13 at 18 51 56 ## After Screenshot 2024-06-13 at 18 51 41 --- .../timelineActivities/components/TimelineActivities.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/twenty-front/src/modules/activities/timelineActivities/components/TimelineActivities.tsx b/packages/twenty-front/src/modules/activities/timelineActivities/components/TimelineActivities.tsx index c0b47efda..9b0dca3e8 100644 --- a/packages/twenty-front/src/modules/activities/timelineActivities/components/TimelineActivities.tsx +++ b/packages/twenty-front/src/modules/activities/timelineActivities/components/TimelineActivities.tsx @@ -23,11 +23,11 @@ const StyledMainContainer = styled.div` display: flex; flex-direction: column; height: 100%; + overflow: auto; justify-content: center; padding-top: ${({ theme }) => theme.spacing(6)}; padding-right: ${({ theme }) => theme.spacing(6)}; - padding-bottom: ${({ theme }) => theme.spacing(16)}; padding-left: ${({ theme }) => theme.spacing(6)}; gap: ${({ theme }) => theme.spacing(4)}; `;