From 5b1f635fa7fd2ff4a8aff22b3b4b53a3690d6db0 Mon Sep 17 00:00:00 2001 From: Kyle Shanks Date: Tue, 9 Apr 2024 18:46:09 -0400 Subject: [PATCH] [C-4258] Fix text input end adornment position (#8068) --- packages/mobile/src/components/core/TextInput.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/mobile/src/components/core/TextInput.tsx b/packages/mobile/src/components/core/TextInput.tsx index fc031a30183..004fe839d3f 100644 --- a/packages/mobile/src/components/core/TextInput.tsx +++ b/packages/mobile/src/components/core/TextInput.tsx @@ -82,7 +82,9 @@ const useStyles = makeStyles(({ typography, palette, spacing }) => ({ color: palette.neutralLight7 }, startAdornment: {}, - endAdornment: {}, + endAdornment: { + alignSelf: 'flex-end' + }, inputAccessory: { flexDirection: 'row', justifyContent: 'flex-end'