diff options
| author | David Hill <[email protected]> | 2026-01-20 17:31:02 +0000 |
|---|---|---|
| committer | David Hill <[email protected]> | 2026-01-20 20:34:45 +0000 |
| commit | 36bbe809fae8ef7345b0dfffced31920d36a4b6d (patch) | |
| tree | 0736f02ed4fe613ec68fa22e7446ee64dab18357 | |
| parent | a8113ee0df2976755560b1bc32c243dae8332fb3 (diff) | |
| download | opencode-36bbe809fae8ef7345b0dfffced31920d36a4b6d.tar.gz opencode-36bbe809fae8ef7345b0dfffced31920d36a4b6d.zip | |
add 4px gutter between select trigger and dropdown
| -rw-r--r-- | packages/ui/src/components/select.tsx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/packages/ui/src/components/select.tsx b/packages/ui/src/components/select.tsx index cdf7adfdb..9fb3a9016 100644 --- a/packages/ui/src/components/select.tsx +++ b/packages/ui/src/components/select.tsx @@ -82,6 +82,7 @@ export function Select<T>(props: SelectProps<T> & ButtonProps) { {...others} data-component="select" placement="bottom-end" + gutter={4} value={local.current} options={grouped()} optionValue={(x) => (local.value ? local.value(x) : (x as string))} |
