fix(editor): align JSON view properties and their values (#4343)

This commit is contained in:
Csaba Tuncsik 2022-10-14 10:30:13 +02:00 committed by GitHub
parent 763d2fd24b
commit 594a16161e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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);
}
}