diff options
| author | Janito Vaqueiro Ferreira Filho <janito@mullvad.net> | 2018-04-23 11:36:46 -0300 |
|---|---|---|
| committer | Janito Vaqueiro Ferreira Filho <janito@mullvad.net> | 2018-04-23 11:36:46 -0300 |
| commit | 0827cf372856f7b7f027b79c8182482220db227f (patch) | |
| tree | ebb5cb884ab3df50a4e904e9155f1a580652f675 | |
| parent | 838595e32933e5797a5f0ac9c03147b4904b2027 (diff) | |
| download | mullvadvpn-0827cf372856f7b7f027b79c8182482220db227f.tar.xz mullvadvpn-0827cf372856f7b7f027b79c8182482220db227f.zip | |
Fix out-of-time screen status icon position
| -rw-r--r-- | app/components/Connect.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/app/components/Connect.js b/app/components/Connect.js index 56defe49b7..79d14df743 100644 --- a/app/components/Connect.js +++ b/app/components/Connect.js @@ -80,10 +80,10 @@ export default class Connect extends Component<ConnectProps, ConnectState> { renderError(error: BackendError) { return ( <View style={styles.connect}> + <View style={styles.status_icon}> + <Img source="icon-fail" height={60} width={60} alt="" /> + </View> <View style={styles.status}> - <View style={styles.status_icon}> - <Img source="icon-fail" height={60} width={60} alt="" /> - </View> <View style={styles.error_title}> { error.title } </View> @@ -344,4 +344,4 @@ function shallowCompare(lhs: Object, rhs: Object) { keys.length === Object.keys(rhs).length && keys.every(key => lhs[key] === rhs[key]) ); -}
\ No newline at end of file +} |
