Updates settings menu styling

This commit is contained in:
mashazyu
2020-12-05 20:45:01 +01:00
parent 77908afd60
commit 42bf02a0c7
+6 -6
View File
@@ -22,7 +22,7 @@ Segment.propTypes = {
children: PropTypes.node,
last: PropTypes.bool,
style: PropTypes.object,
title: PropTypes.string
title: PropTypes.string,
}
const segmentContainer = {
@@ -33,16 +33,16 @@ const segmentContainer = {
const styles = StyleSheet.create({
container: {
borderStyle: 'solid',
borderBottomWidth: 2,
borderBottomColor: Colors.grey,
borderBottomWidth: 1,
borderBottomColor: Colors.greyLight,
paddingBottom: Spacing.base,
...segmentContainer
...segmentContainer,
},
containerLast: {
...segmentContainer
...segmentContainer,
},
title: {
...Typography.subtitle
...Typography.subtitle,
}
})