fix ListBox styling

This commit is contained in:
Chuck Dries 2023-01-07 00:42:30 -08:00
parent 768a7c318b
commit 9b7e757f29
No known key found for this signature in database
GPG Key ID: A00B7AEAE1DC5BE6

@ -91,7 +91,7 @@ function Option({ item, state }: OptionProps) {
return (
<li
{...optionProps}
className={`p-3 outline-none cursor-default flex items-center justify-between ${text} ${
className={`p-3 outline-none cursor-default flex items-center justify-between ${text} text-sm ${
isFocused ? "bg-transparentblack" : ""
} ${isSelected ? "font-bold" : ""}`}
ref={ref}