diff --git a/app/components/ens/nameLookup.js b/app/components/ens/nameLookup.js index b1c6298..fc33816 100644 --- a/app/components/ens/nameLookup.js +++ b/app/components/ens/nameLookup.js @@ -77,21 +77,26 @@ const RegisterInfoCard = ({ formattedDomain, domainPrice }) => ( - {formattedDomain.toUpperCase()} can be registered for {!!domainPrice && formatPrice(fromWei(domainPrice))} SNT + {formattedDomain.toLowerCase()} can be registered for {!!domainPrice && formatPrice(fromWei(domainPrice))} SNT - + - {formattedDomain.toUpperCase()} + {formattedDomain.toLowerCase()}
{!!domainPrice && formatPrice(fromWei(domainPrice))} SNT
+ + + Resolve this domain to your Status wallet address and contact code + +
) @@ -174,6 +179,7 @@ const LookupForm = ({ handleSubmit, values, handleChange }) => ( (wide ? '100%' : 'auto')}; appearance: none; box-shadow: none; - padding-left: 40px; + padding-left: ${({ search }) => (search ? '40px' : '15px')}; &:focus { outline: none; border-color: ${theme.contentBorderActive}; @@ -33,9 +33,9 @@ const MobileInput = styled.input` const MobileSearch = props => (
-
+ {props.search &&
-
+
}
);