diff --git a/src/components/header/header.css b/src/components/header/header.css index 0ca71321f..7be59dbe2 100644 --- a/src/components/header/header.css +++ b/src/components/header/header.css @@ -1,5 +1,5 @@ .wrapper{ - margin-top: 5px; + margin: 5px -8px 16px 0; padding: 8px; } .logo{ @@ -18,5 +18,5 @@ } .menu { - right: -16px !important; + right: -8px !important; } diff --git a/src/components/transactions/transactionsComponent.js b/src/components/transactions/transactionsComponent.js index 3d61502a5..36e2d1f50 100644 --- a/src/components/transactions/transactionsComponent.js +++ b/src/components/transactions/transactionsComponent.js @@ -19,7 +19,7 @@ class Transactions extends React.Component { this.canLoadMore = parseInt(res.count, 10) > this.props.transactions.length; this.props.transactionsLoaded(res.transactions); }) - .catch(error => console.error(error.message)); //eslint-disable-line + .catch(error => console.error(error.message)); // eslint-disable-line no-console } }