@@ -37,7 +37,6 @@
}
[data-slot="select-select-content-list"] {
- min-height: 2rem;
overflow-y: auto;
max-height: 12rem;
white-space: nowrap;
@@ -46,6 +46,7 @@ export function Select<T>(props: SelectProps<T> & ButtonProps) {
<Kobalte<T, { category: string; options: T[] }>
{...others}
data-component="select"
+ placement="bottom-start"
value={local.current}
options={grouped()}
optionValue={(x) => (local.value ? local.value(x) : (x as string))}