From 42bf02a0c7420009318be6656d109d509645b50d Mon Sep 17 00:00:00 2001 From: mashazyu <mariya.z@gmail.com> Date: Sat, 5 Dec 2020 20:45:01 +0100 Subject: [PATCH] Updates settings menu styling --- components/common/segment.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/components/common/segment.js b/components/common/segment.js index b0baca15..af96dcf7 100644 --- a/components/common/segment.js +++ b/components/common/segment.js @@ -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, } }) -- GitLab