1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Add Catalog title to sidebar

Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>
This commit is contained in:
Alex Andreev 2021-08-29 12:42:05 +03:00
parent 37567b024e
commit 17397b0637
2 changed files with 6 additions and 0 deletions

View File

@ -27,4 +27,9 @@
@apply uppercase font-bold;
color: var(--textColorAccent);
font-size: small;
}
.catalog {
@apply p-5 font-bold text-2xl;
color: var(--textColorAccent);
}

View File

@ -58,6 +58,7 @@ export function CatalogMenu(props: Props) {
// Overwrite Material UI styles with injectFirst https://material-ui.com/guides/interoperability/#controlling-priority-4
<StylesProvider injectFirst>
<div className="flex flex-col w-full">
<div className={styles.catalog}>Catalog</div>
<TreeView
defaultExpanded={["catalog"]}
defaultCollapseIcon={<Icon material="expand_more"/>}