Skip to content

Commit

Permalink
fix(ui): remove left margin in key-value separator (#153)
Browse files Browse the repository at this point in the history
  • Loading branch information
rtritto authored Jan 13, 2023
1 parent b5e50df commit 16e0903
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/DataKeyPair.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -246,10 +246,10 @@ export const DataKeyPair: React.FC<DataKeyPairProps> = (props) => {
(
isRoot
? (rootName !== false
? <DataBox sx={{ mx: 0.5 }}>:</DataBox>
? <DataBox sx={{ mr: 0.5 }}>:</DataBox>
: null)
: nestedIndex === undefined && (
<DataBox sx={{ mx: 0.5 }}>:</DataBox>
<DataBox sx={{ mr: 0.5 }}>:</DataBox>
)
)
}
Expand Down

0 comments on commit 16e0903

Please sign in to comment.