设置input字体大小
This commit is contained in:
parent
75bc050fa1
commit
31317ece32
components/OwnInput
|
@ -27,8 +27,8 @@ export default function OwnInput({
|
||||||
maxLength={11}
|
maxLength={11}
|
||||||
onChange={(e) => onChange(e.target?.value)}
|
onChange={(e) => onChange(e.target?.value)}
|
||||||
value={value}
|
value={value}
|
||||||
className={`w-full placeholder:text-[#FFFFFF80] ${inputClassName}`}
|
className={`w-full placeholder:text-[#FFFFFF80] text-[16px] focus:text-[16px] ${inputClassName}`}
|
||||||
style={{ fontSize: `16px!important` }}
|
// style={{ fontSize: `16px!important` }}
|
||||||
/>
|
/>
|
||||||
{clearable && value != "" && (
|
{clearable && value != "" && (
|
||||||
<div className="w-4 h-4 absolute right-2 top-[2px] flex justify-center items-center bg-[#ffffff33] p-1 rounded-full">
|
<div className="w-4 h-4 absolute right-2 top-[2px] flex justify-center items-center bg-[#ffffff33] p-1 rounded-full">
|
||||||
|
|
Loading…
Reference in New Issue