Skip to content

Commit

Permalink
fix(editor): align JSON view properties and their values (n8n-io#4343)
Browse files Browse the repository at this point in the history
  • Loading branch information
cstuncsik authored Oct 14, 2022
1 parent d0f18df commit 52578aa
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions packages/editor-ui/src/components/RunDataJson.vue
Original file line number Diff line number Diff line change
Expand Up @@ -271,13 +271,19 @@ export default mixins(externalHooks).extend({
}
}
.vjs-key {
.vjs-key,
.vjs-value {
> span {
color: var(--color-text-dark);
line-height: 1.7;
border-radius: var(--border-radius-base);
}
}
.vjs-value {
> span {
padding: 0 var(--spacing-5xs) 0 var(--spacing-5xs);
margin-right: var(--spacing-5xs);
margin-left: var(--spacing-5xs);
}
}
Expand Down

0 comments on commit 52578aa

Please sign in to comment.