From e646bfec4914bcb084810522a09f5f49ea4cfe43 Mon Sep 17 00:00:00 2001 From: Georgia Monahan Date: Mon, 6 Mar 2023 09:34:37 +0000 Subject: [PATCH 1/2] Set background color of locale picker to match page background --- src/components/LocalePicker.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/LocalePicker.js b/src/components/LocalePicker.js index 6d1b56ecaa27..fa30093e8787 100644 --- a/src/components/LocalePicker.js +++ b/src/components/LocalePicker.js @@ -48,7 +48,7 @@ const LocalePicker = (props) => { size={props.size} value={props.preferredLocale} containerStyles={props.size === 'small' ? [styles.pickerContainerSmall] : []} - backgroundColor={themeColors.transparent} + backgroundColor={themeColors.midtone} /> ); }; From cbf61fa5bf582325ec517aa691ca72ee93a4342b Mon Sep 17 00:00:00 2001 From: Georgia Monahan Date: Mon, 6 Mar 2023 11:11:40 +0000 Subject: [PATCH 2/2] Remove border radius to work on all platforms including windows --- src/styles/styles.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/styles/styles.js b/src/styles/styles.js index b99bad1cdcc0..f3b7165e82dc 100644 --- a/src/styles/styles.js +++ b/src/styles/styles.js @@ -568,7 +568,6 @@ const styles = { paddingRight: 17, paddingTop: 6, paddingBottom: 6, - borderRadius: variables.componentBorderRadius, borderWidth: 0, color: themeColors.text, height: 26, @@ -593,7 +592,6 @@ const styles = { paddingTop: 6, paddingBottom: 6, borderWidth: 0, - borderRadius: variables.componentBorderRadius, color: themeColors.text, appearance: 'none', height: 26, @@ -609,7 +607,6 @@ const styles = { paddingTop: 6, paddingBottom: 6, borderWidth: 0, - borderRadius: variables.componentBorderRadius, color: themeColors.text, height: 26, opacity: 1,