Remove line-through textDecoration for excluded values

This commit is contained in:
emelko
2020-12-05 12:10:33 +01:00
parent 5af29f9628
commit fbfc4d6621
-6
View File
@@ -97,10 +97,6 @@ class SymptomBox extends Component {
}
}
const excluded = {
textDecorationLine: 'line-through'
}
const hint = {
fontSize: Sizes.small,
fontStyle: 'italic'
@@ -136,7 +132,6 @@ const styles = StyleSheet.create({
},
symptomNameExcluded: {
color: Colors.greyDark,
...excluded
},
textContainer: {
flexDirection: 'column',
@@ -151,7 +146,6 @@ const styles = StyleSheet.create({
},
textExcluded: {
color: Colors.grey,
...excluded
}
})