Skip to content

Commit

Permalink
Enhancement: In data, provide extra space between objects #719
Browse files Browse the repository at this point in the history
  • Loading branch information
estruyf committed Dec 12, 2023
1 parent 0f07be3 commit 5fcd8d6
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down Expand Up @@ -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

Expand Down
13 changes: 11 additions & 2 deletions src/dashboardWebView/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 5fcd8d6

Please sign in to comment.