1
0
mirror of https://github.com/trezor/trezor-wallet synced 2024-12-25 00:18:07 +00:00

Fixed padding in tokens

This commit is contained in:
Vladimir Volek 2018-09-24 17:07:52 +02:00
parent a02b9883da
commit 6bd2cd6471
2 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@ import BigNumber from 'bignumber.js';
import PropTypes from 'prop-types'; import PropTypes from 'prop-types';
const TokenWrapper = styled.div` const TokenWrapper = styled.div`
padding: 14px 48px; padding: 14px 0;
position: relative; position: relative;
display: flex; display: flex;
align-items: center; align-items: center;

View File

@ -19,7 +19,7 @@ import AddedToken from './components/AddedToken';
import type { Props } from './Container'; import type { Props } from './Container';
const Content = styled.div` const Content = styled.div`
padding-left: 35px; padding: 0 35px;
`; `;
const AccountHeading = styled.div` const AccountHeading = styled.div`