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 eab86cc commit 2bb1af5Copy full SHA for 2bb1af5
src/components/SchemaRow.tsx
@@ -52,7 +52,7 @@ export const SchemaRow: React.FunctionComponent<SchemaRowProps> = ({ schemaNode,
52
const childNodes = React.useMemo(() => calculateChildrenToShow(schemaNode), [schemaNode]);
53
54
return (
55
- <Box px={2} fontSize="sm" pos="relative" style={{ marginLeft: CARET_ICON_BOX_DIMENSION }}>
+ <Box fontSize="sm" pos="relative" style={{ marginLeft: CARET_ICON_BOX_DIMENSION }}>
56
<Box
57
onClick={childNodes.length > 0 ? () => setExpanded(!isExpanded) : undefined}
58
cursor={childNodes.length > 0 ? 'pointer' : 'default'}
0 commit comments