From 5fcd8d6fe7b51a80a73ec802f8b1296bfb2fcc6b Mon Sep 17 00:00:00 2001 From: Elio Struyf Date: Tue, 12 Dec 2023 09:30:07 +0100 Subject: [PATCH] Enhancement: In data, provide extra space between objects #719 --- CHANGELOG.md | 3 ++- src/dashboardWebView/styles.css | 13 +++++++++++-- 2 files changed, 13 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e5acb23c..79600a02 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/src/dashboardWebView/styles.css b/src/dashboardWebView/styles.css index 49111fd5..7c7e3e30 100644 --- a/src/dashboardWebView/styles.css +++ b/src/dashboardWebView/styles.css @@ -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 {