Skip to content

Commit

Permalink
fixed some padding on <PropertyBox> and StyledPropertyBox
Browse files Browse the repository at this point in the history
  • Loading branch information
Bonapara committed Nov 4, 2024
1 parent c582588 commit 43e34bb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ export const StyledPropertyBoxContainer = styled.div`
flex-direction: column;
gap: ${({ theme }) => theme.spacing(2)};
padding: ${({ theme }) => theme.spacing(3)};
padding-right: ${({ theme }) => theme.spacing(2)};
`;

export const PropertyBox = ({ children, className }: PropertyBoxProps) => (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,9 @@ const StyledListItem = styled(RecordDetailRecordsListItem)<{
const StyledPropertyBox = styled(PropertyBox)`
align-items: flex-start;
display: flex;
padding-left: ${({ theme }) => theme.spacing(0.5)};
padding-top: ${({ theme }) => theme.spacing(2)};
padding-left: ${({ theme }) => theme.spacing(0)};
padding-top: ${({ theme }) => theme.spacing(1)};
padding-right: ${({ theme }) => theme.spacing(0)};
`;

const StyledClickableZone = styled.div`
Expand Down

0 comments on commit 43e34bb

Please sign in to comment.