This commit is contained in:
hamid zarghami
2024-12-24 09:22:29 +03:30
parent 7bded16958
commit b9cae34c15
4 changed files with 30 additions and 16 deletions
+1 -1
View File
@@ -17,7 +17,7 @@ type Props = {
const Input: FC<Props> = (props: Props) => {
const inputClass = clx(
'w-full h-12 text-black block px-4 text-sm rounded-xl mt-1 border border-border',
'w-full h-10 text-black block px-4 text-xs rounded-xl mt-1 border border-border',
props.readOnly && 'bg-gray-100',
props.className
);