Skip to content

Commit 2deef0b

Browse files
Merge pull request #361 from RedisInsight/feature/RI-781_Tree_view
#RI-781 - fix styles
2 parents 1c03ccc + 4153cb4 commit 2deef0b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

redisinsight/ui/src/components/virtual-tree/components/Node/Node.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ const Node = ({
109109
<div
110110
style={{
111111
...style,
112-
paddingLeft: nestingLevel * 30,
112+
paddingLeft: nestingLevel * 8,
113113
}}
114114
className={cx(styles.nodeContainer, { [styles.nodeSelected]: isSelected && isLeaf, })}
115115
>

redisinsight/ui/src/components/virtual-tree/components/Node/styles.module.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
color: var(--euiTextSubduedColor) !important;
2121
font: normal normal normal 13px/28px Graphik, sans-serif !important;
2222
letter-spacing: -0.13px;
23-
23+
white-space: nowrap;
2424

2525
&Open {
2626
color: var(--euiColorFullShade) !important;

0 commit comments

Comments
 (0)