summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorJanito Vaqueiro Ferreira Filho <janito@mullvad.net>2018-04-23 11:36:46 -0300
committerJanito Vaqueiro Ferreira Filho <janito@mullvad.net>2018-04-23 11:36:46 -0300
commit0827cf372856f7b7f027b79c8182482220db227f (patch)
treeebb5cb884ab3df50a4e904e9155f1a580652f675
parent838595e32933e5797a5f0ac9c03147b4904b2027 (diff)
downloadmullvadvpn-0827cf372856f7b7f027b79c8182482220db227f.tar.xz
mullvadvpn-0827cf372856f7b7f027b79c8182482220db227f.zip
Fix out-of-time screen status icon position
-rw-r--r--app/components/Connect.js8
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
+}