diff --git a/src/views/Wallet/views/AccountReceive/index.js b/src/views/Wallet/views/AccountReceive/index.js
index c0b65a8c..ec92414d 100644
--- a/src/views/Wallet/views/AccountReceive/index.js
+++ b/src/views/Wallet/views/AccountReceive/index.js
@@ -3,6 +3,7 @@ import React from 'react';
import styled, { css } from 'styled-components';
import { H2 } from 'components/Heading';
import Button from 'components/Button';
+import Icon from 'components/Icon';
import ICONS from 'config/icons';
import colors from 'config/colors';
@@ -80,17 +81,30 @@ const AddressInfoText = styled.div`
`;
const ShowAddressButton = styled(Button)`
+ padding-top: 0;
+ padding-bottom: 0;
+ padding-left: 10px;
+
+ display: flex;
+ align-items: center;
+
border-top-left-radius: 0;
border-bottom-left-radius: 0;
`;
+const ShowAddressIcon = styled(Icon)`
+ margin-right: 7px;
+ position: relative;
+ top: 2px;
+`;
+
const EyeButton = styled(Button)`
z-index: 10001;
padding: 0;
position: absolute;
left: auto;
- right: 40px;
- top: 2px;
+ right: 60px;
+ top: 3px;
`;
const qrCodeStyle = {
@@ -154,11 +168,12 @@ const AccountReceive = (props: Props) => {