From 6bd2cd6471c56b5059d77fc62fddd18963d4662f Mon Sep 17 00:00:00 2001 From: Vladimir Volek Date: Mon, 24 Sep 2018 17:07:52 +0200 Subject: [PATCH] Fixed padding in tokens --- .../Wallet/views/AccountSummary/components/AddedToken/index.js | 2 +- src/views/Wallet/views/AccountSummary/index.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/Wallet/views/AccountSummary/components/AddedToken/index.js b/src/views/Wallet/views/AccountSummary/components/AddedToken/index.js index 2ee663b3..01cddcba 100644 --- a/src/views/Wallet/views/AccountSummary/components/AddedToken/index.js +++ b/src/views/Wallet/views/AccountSummary/components/AddedToken/index.js @@ -11,7 +11,7 @@ import BigNumber from 'bignumber.js'; import PropTypes from 'prop-types'; const TokenWrapper = styled.div` - padding: 14px 48px; + padding: 14px 0; position: relative; display: flex; align-items: center; diff --git a/src/views/Wallet/views/AccountSummary/index.js b/src/views/Wallet/views/AccountSummary/index.js index c22485b1..13bd8993 100644 --- a/src/views/Wallet/views/AccountSummary/index.js +++ b/src/views/Wallet/views/AccountSummary/index.js @@ -19,7 +19,7 @@ import AddedToken from './components/AddedToken'; import type { Props } from './Container'; const Content = styled.div` - padding-left: 35px; + padding: 0 35px; `; const AccountHeading = styled.div`