Merge branch '382-bug-cervical-mucus-title-broken-on-symptom-view' into 'master'

Changes fontSize of titles in SymptomBoxes;

Closes #382

See merge request bloodyhealth/drip!226
This commit is contained in:
bl00dymarie
2019-05-28 06:37:44 +00:00
+4 -1
View File
@@ -278,7 +278,10 @@ class SymptomBox extends Component {
> >
<View style={[styles.symptomBox, boxActive, disabledStyle]}> <View style={[styles.symptomBox, boxActive, disabledStyle]}>
<DripIcon name={this.props.iconName} size={50} color={hasData ? 'white' : 'black'}/> <DripIcon name={this.props.iconName} size={50} color={hasData ? 'white' : 'black'}/>
<AppText style={[textActive, disabledStyle]}> <AppText
style={[textActive, disabledStyle, {fontSize: 15}]}
numberOfLines={1}
>
{this.props.title.toLowerCase()} {this.props.title.toLowerCase()}
</AppText> </AppText>
</View> </View>