We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 82e9952 commit ae76d13Copy full SHA for ae76d13
src/components/input/SelectNext.tsx
@@ -196,6 +196,11 @@ function SelectMain<T>({
196
classes={classnames(
197
'w-full flex',
198
'bg-grey-0 disabled:bg-grey-1 disabled:text-grey-6',
199
+ // Add inherited rounded corners so that the toggle is consistent with
200
+ // the wrapper, which is the element rendering borders.
201
+ // Using overflow-hidden in the parent is not an option here, because
202
+ // that would hide the listbox
203
+ 'rounded-[inherit]',
204
classes,
205
)}
206
expanded={listboxOpen}
0 commit comments