From 6fd3fc0f7f3254476c5f45d2a22508415e27fa21 Mon Sep 17 00:00:00 2001 From: Rory Abraham Date: Tue, 19 Oct 2021 19:34:06 -0700 Subject: [PATCH 1/2] Fix multiline ExpensiTextInput label --- src/styles/styles.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/styles/styles.js b/src/styles/styles.js index a329fcba50a0..3ab98c60da68 100644 --- a/src/styles/styles.js +++ b/src/styles/styles.js @@ -525,11 +525,13 @@ const styles = { expensiTextInputLabel: { position: 'absolute', left: 11.5, - top: 16, + top: 10, + paddingTop: 6, fontSize: variables.fontSizeNormal, color: themeColors.textSupporting, fontFamily: fontFamily.GTA, width: '100%', + backgroundColor: themeColors.componentBG, }, expensiTextInputLabelDesktop: { transformOrigin: 'left center', From 560139a6d22b5cd2a1ead8a6ec2282bba51aeacf Mon Sep 17 00:00:00 2001 From: Rory Abraham Date: Tue, 19 Oct 2021 21:49:30 -0700 Subject: [PATCH 2/2] Even out padding --- src/styles/styles.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/styles/styles.js b/src/styles/styles.js index 3ab98c60da68..ee571914207a 100644 --- a/src/styles/styles.js +++ b/src/styles/styles.js @@ -526,7 +526,7 @@ const styles = { position: 'absolute', left: 11.5, top: 10, - paddingTop: 6, + paddingVertical: 6, fontSize: variables.fontSizeNormal, color: themeColors.textSupporting, fontFamily: fontFamily.GTA,