diff --git a/src/NavBar.js b/src/NavBar.js
index c6701a580..a96ff82be 100644
--- a/src/NavBar.js
+++ b/src/NavBar.js
@@ -42,9 +42,13 @@ import _backButtonImage from './back_chevron.png';
const styles = StyleSheet.create({
title: {
textAlign: 'center',
- marginTop: 10,
- fontSize: 18,
color: '#0A0A0A',
+ fontSize: 18,
+ width: 180,
+ alignSelf: 'center',
+ },
+ titleWrapper: {
+ marginTop: 10,
position: 'absolute',
...Platform.select({
ios: {
@@ -76,7 +80,7 @@ const styles = StyleSheet.create({
position: 'absolute',
},
backButton: {
- width: 130,
+ width: 100,
height: 37,
position: 'absolute',
...Platform.select({
@@ -414,32 +418,35 @@ class NavBar extends React.Component {
title = title(childState);
}
return (
-
- {title}
-
+
+
+ {title}
+
+
);
}