revert layout changes

This commit is contained in:
Florian Dold 2017-04-29 00:05:39 +02:00
parent 89067a16dd
commit bb6d8317a5
No known key found for this signature in database
GPG Key ID: D2E4F00F29D02A4B

View File

@ -237,7 +237,7 @@ class WalletBalanceView extends React.Component<any, any> {
); );
return ( return (
<div> <div>
<i18n.Translate> <i18n.Translate wrap="p">
You have no balance to show. Need some You have no balance to show. Need some
{" "}<span>{helpLink}</span>{" "} {" "}<span>{helpLink}</span>{" "}
getting started? getting started?
@ -313,9 +313,7 @@ class WalletBalanceView extends React.Component<any, any> {
let linkElem = <a className="actionLink" href={link} target="_blank">Trusted Auditors and Exchanges</a>; let linkElem = <a className="actionLink" href={link} target="_blank">Trusted Auditors and Exchanges</a>;
return ( return (
<div> <div>
<h2>Available Balance</h2>
{listing.length > 0 ? listing : this.renderEmpty()} {listing.length > 0 ? listing : this.renderEmpty()}
<h2>Settings</h2>
{linkElem} {linkElem}
</div> </div>
); );