Skip to content

Commit

Permalink
Compactify
Browse files Browse the repository at this point in the history
  • Loading branch information
fzaninotto committed Jul 29, 2024
1 parent 3fce842 commit 3927a52
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion examples/crm/src/activity/ActivityLogCompanyCreated.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export function ActivityLogCompanyCreated({
}: ActivityLogCompanyCreatedProps) {
return (
<RecordContextProvider value={company}>
<ListItem>
<ListItem disableGutters>
<Stack
direction="row"
spacing={2}
Expand Down
2 changes: 1 addition & 1 deletion examples/crm/src/activity/ActivityLogContactCreated.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export function ActivityLogContactCreated({
}: ActivityLogContactCreatedProps) {
return (
<RecordContextProvider value={contact}>
<ListItem>
<ListItem disableGutters>
<Stack
direction="row"
spacing={2}
Expand Down
2 changes: 1 addition & 1 deletion examples/crm/src/activity/ActivityLogDealCreated.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export function ActivityLogDealCreated({
}: ActivityLogDealCreatedProps) {
return (
<RecordContextProvider value={company}>
<ListItem>
<ListItem disableGutters>
<Stack
direction="row"
spacing={2}
Expand Down
4 changes: 2 additions & 2 deletions examples/crm/src/activity/ActivityLogIterator.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ export function ActivityLogIterator({
sx={{
'& .MuiListItem-root': {
marginTop: 0,
marginBottom: 2,
marginBottom: 1,
},
'& .MuiListItem-root:not(:first-child)': {
marginTop: 2,
marginTop: 1,
},
}}
>
Expand Down
2 changes: 1 addition & 1 deletion examples/crm/src/activity/ActivityLogNote.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export function ActivityLogNote({
};

return (
<ListItem>
<ListItem disableGutters>
<Stack direction="column" spacing={2} sx={{ width: '100%' }}>
<Stack
direction="row"
Expand Down

0 comments on commit 3927a52

Please sign in to comment.