This commit is contained in:
hamid zarghami
2024-12-24 09:00:36 +03:30
parent 6cb43e42b2
commit 7bded16958
9 changed files with 253 additions and 6 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 rounded-xl mt-2 border border-border',
'w-full h-12 text-black block px-4 text-sm rounded-xl mt-1 border border-border',
props.readOnly && 'bg-gray-100',
props.className
);