diff --git a/components/connect-wallet-modal/modal.tsx b/components/connect-wallet-modal/modal.tsx index aca7628..b5c7859 100644 --- a/components/connect-wallet-modal/modal.tsx +++ b/components/connect-wallet-modal/modal.tsx @@ -36,7 +36,8 @@ export const ConnectWalletModal: FunctionComponent = (props) => { Connect Wallet - Plz check which account is selected after you connect it + Make sure you have the correst account to cliam your ICNS name is + slelected on your wallet {WalletList.map((walletItem) => { @@ -53,7 +54,7 @@ const ModalContainer = styled.div` gap: 0.9rem; padding: 2.2rem; - min-width: 28rem; + max-width: 28.5rem; `; const ModalTitle = styled.div` diff --git a/components/connect-wallet-modal/wallet-item.tsx b/components/connect-wallet-modal/wallet-item.tsx index 1f851d8..2aa699d 100644 --- a/components/connect-wallet-modal/wallet-item.tsx +++ b/components/connect-wallet-modal/wallet-item.tsx @@ -66,7 +66,7 @@ export const WalletItem: FunctionComponent = (props: Props) => { }; return ( - + = (props: Props) => { Go to install Keplr Extension ) ) : ( - Comming soon + Coming soon )} arrow right icon - + ); }; -const WalletContainer = styled.div<{ isReady: boolean }>` +const WalleButton = styled.button` display: flex; flex-direction: row; align-items: center; + border: none; + height: 5.8rem; padding: 1rem; background-color: ${color.grey["600"]}; - opacity: ${(props) => (props.isReady ? 1 : 0.3)}; - cursor: ${(props) => (props.isReady ? "pointer" : "default")}; + &:hover:not(:disabled) { + background-color: ${color.grey["700"]}; + cursor: pointer; + } + + &:disabled { + opacity: 0.3; + cursor: not-allowed; + } `; const WalletIcon = styled.div`