We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0d545be commit cc43c8eCopy full SHA for cc43c8e
arduino-ide-extension/src/browser/style/list-widget.css
@@ -44,10 +44,6 @@
44
height: 100%; /* This has top be 100% down to the `scrollContainer`. */
45
}
46
47
-.filterable-list-container .items-container {
48
- padding-bottom: calc(2 * var(--theia-statusBar-height));
49
-}
50
-
51
.filterable-list-container .items-container > div > div:nth-child(odd) {
52
background-color: var(--theia-sideBar-background);
53
filter: contrast(105%);
arduino-ide-extension/src/browser/widgets/component-list/filterable-list-container.tsx
@@ -51,7 +51,9 @@ export class FilterableListContainer<
<div className={'filterable-list-container'}>
{this.renderSearchBar()}
{this.renderSearchFilter()}
54
- {this.renderComponentList()}
+ <div className="filterable-list-container">
55
+ {this.renderComponentList()}
56
+ </div>
57
</div>
58
);
59
0 commit comments