Enhancement: In data, provide extra space between objects #719

This commit is contained in:
Elio Struyf
2023-12-12 09:30:07 +01:00
parent 0f07be3e3b
commit 5fcd8d6fe7
2 changed files with 13 additions and 3 deletions
+2 -1
View File
@@ -1,6 +1,6 @@
# Change Log
## [9.4.0] - 2023-xx-xx - [Release notes](https://beta.frontmatter.codes/updates/v9.4.0)
## [9.4.0] - 2023-12-12 - [Release notes](https://beta.frontmatter.codes/updates/v9.4.0)
### ✨ New features
@@ -40,6 +40,7 @@
- [#714](https://github.com/estruyf/vscode-front-matter/issues/714): Fix for taxonomy filtering from taxonomy view to content view
- [#717](https://github.com/estruyf/vscode-front-matter/issues/717): Fix in loading yaml data files
- [#718](https://github.com/estruyf/vscode-front-matter/issues/718): Fix JSON schema for the `frontMatter.panel.actions.disabled` setting
- [#719](https://github.com/estruyf/vscode-front-matter/issues/719): Fix styling on data view with objects views
## [9.3.1] - 2023-10-27
+11 -2
View File
@@ -144,9 +144,18 @@
@apply bg-gray-500 opacity-50;
}
}
}
.fields {
> .fields {
> div > label:first-of-type {
color: var(--primary-color);
}
> div:not(:first-child) > label:first-of-type {
margin-block-start: 2rem;
border-block-start: 1px solid;
padding-block-start: 2rem;
}
}
}
.ant-list.ant-list-bordered {