Skip to content
This repository was archived by the owner on May 15, 2025. It is now read-only.

Commit a183e6d

Browse files
authored
fix: Prevent focus on mobile Select (#98)
1 parent 19104a2 commit a183e6d

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/components/extenders/Select.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,11 @@ export default function Select<
286286
<Ariakit.Combobox
287287
autoSelect
288288
placeholder="Search..."
289-
className={mergeClass(inputStyles({ size: "sm", look: "base" }), "w-full", !search && "hidden")}
289+
className={mergeClass(
290+
inputStyles({ size: "sm", look: "base" }),
291+
"w-full text-md",
292+
!search && "hidden",
293+
)}
290294
/>
291295
</div>
292296
)}

0 commit comments

Comments
 (0)