Skip to content

Commit 4b83c7b

Browse files
authoredApr 1, 2021
fix(ui5-li-tree): fixed incorrect tree items alignment (#3075)
When there was ellipsis of the text of the tree items, the ones which got truncated were misaligned with the ones which weren't. Now they are correctly aligned. Fixes: #3069
1 parent 0aac048 commit 4b83c7b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎packages/main/src/themes/TreeListItem.css

+2-2
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,8 @@
6868
}
6969

7070
.ui5-li-tree-toggle-box {
71-
width: var(--_ui5-tree-toggle-box-width);
72-
height: var(--_ui5-tree-toggle-box-height);
71+
min-width: var(--_ui5-tree-toggle-box-width);
72+
min-height: var(--_ui5-tree-toggle-box-height);
7373
display: flex;
7474
align-items: center;
7575
justify-content: center;

0 commit comments

Comments
 (0)
Please sign in to comment.