diff options
| -rw-r--r-- | app/components/Settings.js | 1 | ||||
| -rw-r--r-- | app/components/SettingsStyles.js | 6 |
2 files changed, 4 insertions, 3 deletions
diff --git a/app/components/Settings.js b/app/components/Settings.js index 6e48bf613a..effd366ba7 100644 --- a/app/components/Settings.js +++ b/app/components/Settings.js @@ -67,6 +67,7 @@ export default class Settings extends Component { <Text style={styles.settings__account_paid_until_label} testName='settings__account_paid_until_label'>{formattedExpiry}</Text> )} </View> + {/* HERE */} <Img style={styles.settings__cell_disclosure} source='icon-chevron'/> </View> </Button> diff --git a/app/components/SettingsStyles.js b/app/components/SettingsStyles.js index bdcccd5c81..574116416d 100644 --- a/app/components/SettingsStyles.js +++ b/app/components/SettingsStyles.js @@ -51,7 +51,8 @@ export default Object.assign(createViewStyles({ justifyContent: 'space-between' }, settings__cell_disclosure:{ - marginLeft: 8 + marginLeft: 8, + color: rgba(255, 255, 255, 0.8), }, settings__cell_spacer:{ height: 24, @@ -64,8 +65,7 @@ export default Object.assign(createViewStyles({ width: 16, height: 16, flex: 0, - marginRight: 8, - opacity: 0.8 + color: rgba(255, 255, 255, 0.8), }, settings__account_paid_until_label__error:{ color: '#d0021b' |
