Skip to content

Commit 1fa9552

Browse files
author
Elliot Park
committed
Fixed snapshot issue
1 parent 195bb9c commit 1fa9552

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/components/src/List/ListItemLabel.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ type ListItemLabelProps = CompatibleHTMLProps<HTMLElement> &
8282
export const ListItemLabel = styled(ListItemLabelLayout).withConfig({
8383
shouldForwardProp: (prop) => prop === 'itemRole' || shouldForwardProp(prop),
8484
})`
85-
${({ height, itemRole }) => itemRole === 'none' && `height: ${height}px;`}
85+
${({ height, itemRole }) => itemRole === 'none' && `min-height: ${height}px;`}
8686
${listItemBackgroundColor}
8787
8888
align-items: center;

0 commit comments

Comments
 (0)