We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b90c348 commit c1ad2f9Copy full SHA for c1ad2f9
1 file changed
apps/code/src/renderer/components/ui/combobox/Combobox.css
@@ -33,6 +33,9 @@
33
}
34
35
.combobox-input-wrapper {
36
+ position: sticky;
37
+ top: 0;
38
+ z-index: 1;
39
display: flex;
40
align-items: center;
41
gap: var(--space-2);
@@ -87,8 +90,9 @@
87
90
88
91
89
92
.combobox-content [cmdk-list] {
- flex: 1;
93
+ flex: 1 1 auto;
94
min-height: 0;
95
+ max-height: 240px;
96
overflow-y: auto;
97
overflow-x: hidden;
98
overscroll-behavior: contain;
@@ -286,6 +290,9 @@
286
290
287
291
288
292
.combobox-footer {
293
294
+ bottom: 0;
295
289
296
border-top: 1px solid var(--gray-a6);
297
padding: var(--combobox-content-padding);
298
flex-shrink: 0;
0 commit comments