diff --git a/app/src/atoms/InputField/index.tsx b/app/src/atoms/InputField/index.tsx index 25ffc7883ef..abecf91cada 100644 --- a/app/src/atoms/InputField/index.tsx +++ b/app/src/atoms/InputField/index.tsx @@ -59,7 +59,7 @@ export interface InputFieldProps { /** blur handler */ onBlur?: (event: React.FocusEvent) => unknown /** makes input field read-only */ - readOnly?: boolean | undefined + readOnly?: boolean /** html tabindex property */ tabIndex?: number /** automatically focus field on renders */ @@ -197,6 +197,11 @@ function Input(props: InputFieldProps): JSX.Element { ? TYPOGRAPHY.lineHeight36 : TYPOGRAPHY.lineHeight48}; } + + /* the size of dot for password is handled by font-size */ + input[type='password'] { + font-size: ${size === 'small' ? '56px' : '62px'}; + } } `