diff --git a/components/settings/nfp-settings/index.js b/components/settings/nfp-settings/index.js
index 35d9a25..8375350 100644
--- a/components/settings/nfp-settings/index.js
+++ b/components/settings/nfp-settings/index.js
@@ -2,11 +2,12 @@ import React, { Component } from 'react'
import {
ScrollView, View
} from 'react-native'
-import styles from '../../../styles'
+import styles, { iconStyles } from '../../../styles'
import labels from '../../../i18n/en/settings'
import AppText from '../../app-text'
import TempSlider from './temp-slider'
import UseCervixSetting from './use-cervix'
+import Icon from 'react-native-vector-icons/Entypo'
export default class Settings extends Component {
constructor(props) {
@@ -26,7 +27,10 @@ export default class Settings extends Component {
- {`${labels.preOvu.title} `}
+
+
+ {`${labels.preOvu.title} `}
+
{`${labels.preOvu.note} `}
diff --git a/i18n/en/settings.js b/i18n/en/settings.js
index 3351ffa..a37ca75 100644
--- a/i18n/en/settings.js
+++ b/i18n/en/settings.js
@@ -81,6 +81,6 @@ export default {
},
preOvu: {
title: 'Infertile days at cycle start',
- note: "drip applies NFP's rules for calculating infertile days at the start of the cycle (see the wiki for more info). However, drip does not currently apply the so called 20-day-rule, which determines infertile days at the cycle start from past cycle lengths, in case no past symptothermal info is available."
+ note: "drip applies NFP's rules for calculating infertile days at the start of the cycle (see the wiki for more info). However, drip does not currently apply the so called 20-day-rule, which determines infertile days at the cycle start from past cycle lengths in case no past symptothermal info is available."
}
}
\ No newline at end of file
diff --git a/styles/index.js b/styles/index.js
index 852b6fb..d61b3b7 100644
--- a/styles/index.js
+++ b/styles/index.js
@@ -409,4 +409,8 @@ export const iconStyles = {
menuIconInactive: {
color: colorInActive,
},
+ infoInHeading: {
+ marginRight: 5,
+ color: 'black'
+ }
}
\ No newline at end of file