1
0
mirror of https://github.com/trezor/trezor-wallet synced 2024-11-24 09:18:09 +00:00

fixed account tab underline when resize window

This commit is contained in:
Szymon Lesisz 2018-03-29 11:32:35 +02:00
parent d6349356c8
commit 34d3e885b8

View File

@ -22,10 +22,21 @@ class Indicator extends Component {
left: 0
},
}
this.reposition = this.reposition.bind(this);
}
handleResize() {
this.reposition();
}
componentDidMount() {
this.reposition();
window.addEventListener('resize', this.reposition, false);
}
componentWillUnmount() {
window.removeEventListener('resize', this.reposition, false);
}
componentDidUpdate(newProps: any) {
@ -47,7 +58,6 @@ class Indicator extends Component {
}
})
}
}
render() {