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

Label and group styling

Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>
This commit is contained in:
Alex Andreev 2023-02-01 09:43:52 +03:00
parent d99bf38ff3
commit e4221d891c

View File

@ -114,11 +114,13 @@ const StyledTreeItem = withStyles((theme) => ({
group: {
marginLeft: 8,
paddingLeft: 16,
borderLeft: `1px dashed ${alpha(theme.palette.text.primary, 0.4)}`,
borderLeft: `1px dashed var(--borderColor)`,
},
label: {
fontSize: "inherit",
lineHeight: "1.8",
cursor: "default",
backgroundColor: "transparent!important",
},
}))((props: TreeItemProps) => <TreeItem {...props} />);