Browse Source

- fix #219

pull/220/head
Hunter Thornsberry 2 years ago
parent
commit
9061b7c07a
  1. 2
      src/components/UI/Input.tsx

2
src/components/UI/Input.tsx

@ -32,7 +32,7 @@ const Input = React.forwardRef<HTMLInputElement, InputProps>(
{...props} {...props}
/> />
{suffix && ( {suffix && (
<div className="pointer-events-none absolute inset-y-0 right-0 flex items-center pr-3 font-mono text-textSecondary"> <div className="pointer-events-none absolute inset-y-0 right-0 flex items-center pr-9 font-mono text-textSecondary">
<span className="text-gray-500 sm:text-sm">{suffix}</span> <span className="text-gray-500 sm:text-sm">{suffix}</span>
</div> </div>
)} )}

Loading…
Cancel
Save