We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 65cb42f commit 1fc3180Copy full SHA for 1fc3180
packages/main/src/Tree.hbs
@@ -7,6 +7,7 @@
7
@ui5-item-click="{{_onListItemClick}}"
8
@ui5-item-delete="{{_onListItemDelete}}"
9
@ui5-selection-change="{{_onListSelectionChange}}"
10
+ class="ui5-tree-root"
11
>
12
<slot name="header" slot="header"></slot>
13
{{#each _listItems}}
packages/main/src/themes/Tree.css
@@ -1,6 +1,11 @@
1
@import "./InvisibleTextStyles.css";
2
3
:host(:not([hidden])) {
4
- display: block;
5
- width: 100%;
+ display: block;
+ width: 100%;
6
+}
+
+.ui5-tree-root {
+ height: 100%;
}
0 commit comments