Skip to content

Commit

Permalink
fix: timeline padding (#8440)
Browse files Browse the repository at this point in the history
Fixes: #8437

Co-authored-by: Félix Malfait <felix@twenty.com>
  • Loading branch information
harshrajeevsingh and FelixMalfait authored Nov 9, 2024
1 parent 8ee827d commit 51d1305
Showing 1 changed file with 0 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ import { ActivityTargetableObject } from '@/activities/types/ActivityTargetableE
import { useObjectMetadataItem } from '@/object-metadata/hooks/useObjectMetadataItem';
import { useObjectMetadataItems } from '@/object-metadata/hooks/useObjectMetadataItems';
import { ScrollWrapper } from '@/ui/utilities/scroll/components/ScrollWrapper';
import { MOBILE_VIEWPORT } from 'twenty-ui';

type EventListProps = {
targetableObject: ActivityTargetableObject;
Expand All @@ -27,12 +26,6 @@ const StyledTimelineContainer = styled.div`
flex-direction: column;
gap: ${({ theme }) => theme.spacing(1)};
justify-content: flex-start;
width: calc(100% - ${({ theme }) => theme.spacing(8)});
@media (max-width: ${MOBILE_VIEWPORT}px) {
width: calc(100% - ${({ theme }) => theme.spacing(2)});
}
`;

export const EventList = ({ events, targetableObject }: EventListProps) => {
Expand Down

0 comments on commit 51d1305

Please sign in to comment.