Skip to content

Commit

Permalink
style(settings): Removed left padding from setting description/value
Browse files Browse the repository at this point in the history
  • Loading branch information
sampie777 committed Nov 29, 2021
1 parent 114a08f commit 1a68afb
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions source/screens/Settings/SettingComponent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ const createStyles = ({ isDark, colors }: ThemeContextProps) => StyleSheet.creat
paddingHorizontal: 20,
paddingVertical: 15,
marginBottom: 1,
backgroundColor: colors.background,
backgroundColor: colors.background
},
switchContainer: {
flexDirection: "row",
Expand All @@ -144,23 +144,21 @@ const createStyles = ({ isDark, colors }: ThemeContextProps) => StyleSheet.creat
},

titleContainer: {
flex: 1,
flex: 1
},
titleText: {
fontSize: 16,
color: colors.text,
color: colors.text
},
descriptionText: {
color: colors.textLight,
fontSize: 14,
paddingLeft: 10,
paddingTop: 5,
fontStyle: "italic"
},
valueText: {
color: colors.textLight,
fontSize: 14,
paddingLeft: 10,
paddingTop: 5
}
});

0 comments on commit 1a68afb

Please sign in to comment.