Skip to content

Commit

Permalink
update overflow-hidden to brakeInside-avoid
Browse files Browse the repository at this point in the history
  • Loading branch information
omriklein committed Aug 31, 2023
1 parent aa066d7 commit 1a831af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/mui-material/src/ImageListItem/ImageListItem.js
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ const ImageListItem = React.forwardRef(function ImageListItem(inProps, ref) {
gridColumnEnd: variant !== 'masonry' ? `span ${cols}` : undefined,
gridRowEnd: variant !== 'masonry' ? `span ${rows}` : undefined,
marginBottom: variant === 'masonry' ? gap : undefined,
overflow: variant === 'masonry' ? 'hidden' : undefined,
breakInside: variant === 'masonry' ? 'avoid' : undefined,
...style,
}}
ownerState={ownerState}
Expand Down

0 comments on commit 1a831af

Please sign in to comment.