Skip to content
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import { LINK_CHIP_CLICK_OUTSIDE_ID } from 'twenty-ui/components';
const StyledContainerContainer = styled.div`
display: flex;
flex-direction: column;
height: 100%;
height: inherit;
gap: ${({ theme }) => theme.spacing(2)};
padding: ${({ theme }) => theme.spacing(2)};
padding-left: ${({ theme }) => theme.spacing(1)};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ import {
const StyledContainer = styled.div`
display: flex;
flex-direction: column;
height: inherit;
min-height: 700px;
min-width: 1000px;
`;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ const StyledContainer = styled.div`
flex-direction: column;
border: 0.5px solid ${({ theme }) => theme.border.color.light};
border-radius: 4px;
height: inherit;
overflow: hidden;
`;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import { eachDayOfInterval, endOfWeek } from 'date-fns';
const StyledContainer = styled.div`
display: flex;
align-items: stretch;
height: calc(100% / 5);

&:not(:last-of-type) {
border-bottom: 0.5px solid ${({ theme }) => theme.border.color.light};
Expand Down
Loading