Skip to content

Commit 4d6a858

Browse files
authored
fix(ui): remove left margin in key-value separator (#153)
1 parent af89dbc commit 4d6a858

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/DataKeyPair.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -246,10 +246,10 @@ export const DataKeyPair: React.FC<DataKeyPairProps> = (props) => {
246246
(
247247
isRoot
248248
? (rootName !== false
249-
? <DataBox sx={{ mx: 0.5 }}>:</DataBox>
249+
? <DataBox sx={{ mr: 0.5 }}>:</DataBox>
250250
: null)
251251
: nestedIndex === undefined && (
252-
<DataBox sx={{ mx: 0.5 }}>:</DataBox>
252+
<DataBox sx={{ mr: 0.5 }}>:</DataBox>
253253
)
254254
)
255255
}

0 commit comments

Comments
 (0)