Skip to content
This repository has been archived by the owner on Apr 15, 2019. It is now read-only.

Commit

Permalink
Merge pull request #575 from alepop/fix-header-wrapper-style
Browse files Browse the repository at this point in the history
Fix header component style - Closes #506
  • Loading branch information
slaweet committed Aug 8, 2017
2 parents bad3ba3 + a887f0f commit 5488c87
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/components/header/header.css
@@ -1,5 +1,5 @@
.wrapper{
margin-top: 5px;
margin: 5px -8px 16px 0;
padding: 8px;
}
.logo{
Expand All @@ -18,5 +18,5 @@
}

.menu {
right: -16px !important;
right: -8px !important;
}
2 changes: 1 addition & 1 deletion src/components/transactions/transactionsComponent.js
Expand Up @@ -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
}
}

Expand Down

0 comments on commit 5488c87

Please sign in to comment.