diff --git a/src/components/ColorPicker.tsx b/src/components/ColorPicker.tsx index 25ac9c1..66cdd12 100644 --- a/src/components/ColorPicker.tsx +++ b/src/components/ColorPicker.tsx @@ -17,7 +17,7 @@ const ColorPicker: FC = (props: Props) => { const pickerOpenGuardRef = useRef(false) const inputClass = clx( - 'w-full bg-white h-10 text-black block pl-10 pr-10 text-xs rounded-xl border border-border', + 'w-full bg-white h-[34px] text-black block pl-10 pr-10 text-xs rounded-xl border border-border', props.readOnly && 'bg-gray-100 border-0 text-description', props.className ) @@ -55,7 +55,7 @@ const ColorPicker: FC = (props: Props) => { return (
-