Fix px on suffix/prefix (#4395)

pull/4085/head^2
sean-brydon 2022-09-12 14:43:09 +01:00 committed by GitHub
parent 869ebb092b
commit 27f58c70d3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -205,8 +205,8 @@ const InputField = forwardRef<HTMLInputElement, InputFieldProps>(function InputF
className={classNames( className={classNames(
"h-9 border border-gray-300", "h-9 border border-gray-300",
addOnFilled && "bg-gray-100", addOnFilled && "bg-gray-100",
addOnLeading && "rounded-l-md border-r-0", addOnLeading && "rounded-l-md border-r-0 px-3",
addOnSuffix && "border-l-0" addOnSuffix && "border-l-0 px-3"
)}> )}>
<div <div
className={classNames( className={classNames(