fix: select (#7612)

This commit is contained in:
Nafees Nazik
2023-03-09 10:13:39 +00:00
committed by GitHub
parent 3a6f05f1e3
commit fe17203cea
2 changed files with 2 additions and 2 deletions
@@ -45,7 +45,7 @@ export const getReactSelectProps = <
menuPlacement?: MenuPlacement;
}) => ({
menuPlacement,
className: classNames("block h-[36px] w-full min-w-0 flex-1 rounded-md", className),
className: classNames("block min-h-[36px] w-full min-w-0 flex-1 rounded-md", className),
classNamePrefix: "cal-react-select",
components: {
...reactSelectComponents,
@@ -80,7 +80,7 @@ export const ControlComponent = <
{...props}
className={classNames(
className,
"dark:bg-darkgray-100 dark:border-darkgray-300 !min-h-9 h-9 border-gray-300 bg-white text-sm leading-4 placeholder:text-sm placeholder:font-normal focus-within:border-0 focus-within:ring-2 focus-within:ring-neutral-800 hover:border-neutral-400 dark:focus-within:ring-white"
"dark:bg-darkgray-100 dark:border-darkgray-300 !min-h-9 border-gray-300 bg-white text-sm leading-4 placeholder:text-sm placeholder:font-normal focus-within:border-0 focus-within:ring-2 focus-within:ring-neutral-800 hover:border-neutral-400 dark:focus-within:ring-white"
)}
/>
);