|
|
|
|
@ -120,6 +120,7 @@ export const AddCardFormInner = (props: Props) => { |
|
|
|
|
<ElementContainer |
|
|
|
|
label={isLabelVisible(ElementTypes.CardExpiry) ? 'form_card_expiration' : ''} |
|
|
|
|
width='275px' |
|
|
|
|
className='test_class' |
|
|
|
|
backgroundColor={inputsBackground} |
|
|
|
|
> |
|
|
|
|
<CardExpiryElement |
|
|
|
|
@ -161,7 +162,7 @@ export const AddCardFormInner = (props: Props) => { |
|
|
|
|
</CountryWrapper> |
|
|
|
|
<ElementContainer |
|
|
|
|
label={isLabelVisible(ElementTypes.CardCity) ? 'city' : ''} |
|
|
|
|
width='275px' |
|
|
|
|
width={isMobileDevice ? '100%' : '275px'} |
|
|
|
|
backgroundColor={inputsBackground} |
|
|
|
|
> |
|
|
|
|
<Input |
|
|
|
|
@ -175,6 +176,7 @@ export const AddCardFormInner = (props: Props) => { |
|
|
|
|
</ElementContainer> |
|
|
|
|
<ElementContainer |
|
|
|
|
label={isLabelVisible(ElementTypes.CardAddress) ? 'address' : ''} |
|
|
|
|
width='100%' |
|
|
|
|
backgroundColor={inputsBackground} |
|
|
|
|
> |
|
|
|
|
<Input |
|
|
|
|
@ -184,6 +186,7 @@ export const AddCardFormInner = (props: Props) => { |
|
|
|
|
onChange={onAddressChange} |
|
|
|
|
onFocus={onInputsFocus(ElementTypes.CardAddress)} |
|
|
|
|
onBlur={onInputsBlur(ElementTypes.CardAddress)} |
|
|
|
|
className='ChangeCard__Form__Address' |
|
|
|
|
/> |
|
|
|
|
</ElementContainer> |
|
|
|
|
</Column> |
|
|
|
|
|