Skip to content

Commit 2bb1af5

Browse files
committed
fix: padding
1 parent eab86cc commit 2bb1af5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/SchemaRow.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ export const SchemaRow: React.FunctionComponent<SchemaRowProps> = ({ schemaNode,
5252
const childNodes = React.useMemo(() => calculateChildrenToShow(schemaNode), [schemaNode]);
5353

5454
return (
55-
<Box px={2} fontSize="sm" pos="relative" style={{ marginLeft: CARET_ICON_BOX_DIMENSION }}>
55+
<Box fontSize="sm" pos="relative" style={{ marginLeft: CARET_ICON_BOX_DIMENSION }}>
5656
<Box
5757
onClick={childNodes.length > 0 ? () => setExpanded(!isExpanded) : undefined}
5858
cursor={childNodes.length > 0 ? 'pointer' : 'default'}

0 commit comments

Comments
 (0)