We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 195bb9c commit 1fa9552Copy full SHA for 1fa9552
packages/components/src/List/ListItemLabel.tsx
@@ -82,7 +82,7 @@ type ListItemLabelProps = CompatibleHTMLProps<HTMLElement> &
82
export const ListItemLabel = styled(ListItemLabelLayout).withConfig({
83
shouldForwardProp: (prop) => prop === 'itemRole' || shouldForwardProp(prop),
84
})`
85
- ${({ height, itemRole }) => itemRole === 'none' && `height: ${height}px;`}
+ ${({ height, itemRole }) => itemRole === 'none' && `min-height: ${height}px;`}
86
${listItemBackgroundColor}
87
88
align-items: center;
0 commit comments