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:
@ -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')};
|
||||
`;
|
||||
|
||||
|
||||
@ -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`
|
||||
|
||||
Reference in New Issue
Block a user