#46 - Fix rendering of tag pickers

This commit is contained in:
Elio Struyf
2021-08-03 10:45:01 +02:00
parent cc21043053
commit c6412760fc
3 changed files with 9 additions and 1 deletions
+4
View File
@@ -1,5 +1,9 @@
# Change Log
## [2.1.0] - 2020-08-XX - Upcoming release
- [#46](https://github.com/estruyf/vscode-front-matter/issues/46): Make the tag pickers render in full width
## [2.0.1] - 2020-07-27
- [#42](https://github.com/estruyf/vscode-front-matter/issues/42): Small enhancement to the table layout
+4
View File
@@ -25,6 +25,10 @@
position: absolute !important;
}
.w-full {
width: 100% !important;
}
.collapsible__body,
.ext_settings {
padding: 1rem 1.25rem;
+1 -1
View File
@@ -58,7 +58,7 @@ export const ViewPanel: React.FunctionComponent<IViewPanelProps> = (props: React
settings && metadata && <Actions metadata={metadata} settings={settings} />
}
<Collapsible title="Metadata" className={`absolute`}>
<Collapsible title="Metadata" className={`absolute w-full`}>
{
<TagPicker type={TagType.keywords}
icon={<SymbolKeywordIcon />}