Removed the boxes around fields on shows and side panel (#4032)

#3963 removed border and padding

Co-authored-by: Charles Bochet <charles@twenty.com>
This commit is contained in:
Jeet Desai
2024-02-26 02:26:37 +05:30
committed by GitHub
parent 0060a9ea57
commit 51c6570d7c
9 changed files with 39 additions and 30 deletions

View File

@ -19,9 +19,6 @@ const StyledOuterContainer = styled.div`
const StyledInnerContainer = styled.div`
display: flex;
flex-direction: column;
gap: ${({ theme }) => theme.spacing(6)};
padding: ${({ theme }) => (useIsMobile() ? '12px 0' : theme.spacing(3))};
padding-right: ${({ theme }) => (useIsMobile() ? 0 : theme.spacing(2))};
width: ${() => (useIsMobile() ? `100%` : '348px')};
`;

View File

@ -25,7 +25,8 @@ const StyledShowPageSummaryCard = styled.div`
flex-direction: column;
gap: ${({ theme }) => theme.spacing(3)};
justify-content: center;
padding: ${({ theme }) => theme.spacing(3)};
padding: ${({ theme }) => theme.spacing(4)};
border-bottom: 1px solid ${({ theme }) => theme.border.color.light};
`;
const StyledInfoContainer = styled.div`