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

Fix header component style - Closes #506 #575

Merged
merged 1 commit into from
Aug 8, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/components/header/header.css
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
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