diff --git a/packages/ui/components/form/select/Select.tsx b/packages/ui/components/form/select/Select.tsx index 55c44e0bb5..675d6696c0 100644 --- a/packages/ui/components/form/select/Select.tsx +++ b/packages/ui/components/form/select/Select.tsx @@ -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, diff --git a/packages/ui/components/form/select/components.tsx b/packages/ui/components/form/select/components.tsx index 3d459894e9..54313a6910 100644 --- a/packages/ui/components/form/select/components.tsx +++ b/packages/ui/components/form/select/components.tsx @@ -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" )} /> );