Skip to content

Commit

Permalink
Merge pull request #1586 from LiskHQ/1567-session-reset-button-diffic…
Browse files Browse the repository at this point in the history
…ult-to-see

Session reset button difficult to see - Closes #1567
  • Loading branch information
Osvaldo Vega Agüero committed Dec 14, 2018
2 parents 22492a7 + c081fb5 commit b23b430
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
5 changes: 2 additions & 3 deletions src/components/header/customCountDown.css
@@ -1,13 +1,12 @@
@import '../app/variables.css';

.reset {
margin-right: 18px;
margin-right: 15px;
padding-left: 3px;
padding-right: 3px;
padding-bottom: 3px;
cursor: pointer;
color: var(--color-white);
border-bottom: solid 2px var(--color-white);
color: var(--color-primary-standard);
display: inline;
font-family: 'Open Sans';
font-weight: 600;
Expand Down
2 changes: 1 addition & 1 deletion src/components/header/index.js
Expand Up @@ -22,7 +22,7 @@ const mapDispatchToProps = {
closeDialog: dialogHidden,
logOut: accountLoggedOut,
removePassphrase,
resetTimer: accountUpdated({ expireTime: Date.now() + lockDuration }),
resetTimer: () => accountUpdated({ expireTime: Date.now() + lockDuration }),
};

export default withRouter(connect(
Expand Down
2 changes: 1 addition & 1 deletion src/components/votingListView/index.js
Expand Up @@ -18,7 +18,7 @@ const mapDispatchToProps = {
voteToggled,
votesFetched,
delegatesFetched,
delegatesCleared: delegatesAdded({
delegatesCleared: () => delegatesAdded({
list: [], totalDelegates: 0, refresh: true,
}),
};
Expand Down

0 comments on commit b23b430

Please sign in to comment.