From 1a68afb678a68db4e5eabc6bb3b788ddd33f4c57 Mon Sep 17 00:00:00 2001 From: "S. Jansen" Date: Mon, 29 Nov 2021 14:39:02 +0200 Subject: [PATCH] style(settings): Removed left padding from setting description/value --- source/screens/Settings/SettingComponent.tsx | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/source/screens/Settings/SettingComponent.tsx b/source/screens/Settings/SettingComponent.tsx index a0175d3c..35844407 100644 --- a/source/screens/Settings/SettingComponent.tsx +++ b/source/screens/Settings/SettingComponent.tsx @@ -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", @@ -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 } });