diff options
author | Hailey <me@haileyok.com> | 2024-05-16 08:52:53 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-16 08:52:53 -0700 |
commit | d639c40e17fabbe9cb0f578eca838cf60c6463bb (patch) | |
tree | 861ddfd44ed878825151f9f1949d537adc21d6f9 | |
parent | 98af0e86786b8b3c6d4b36a5b6409fc5f6de14a5 (diff) | |
download | voidsky-d639c40e17fabbe9cb0f578eca838cf60c6463bb.tar.zst |
[🐴] Tweak padding of web input (#4033)
* tweak more * nit
-rw-r--r-- | src/screens/Messages/Conversation/MessageInput.web.tsx | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/src/screens/Messages/Conversation/MessageInput.web.tsx b/src/screens/Messages/Conversation/MessageInput.web.tsx index b9506b5bb..335322fac 100644 --- a/src/screens/Messages/Conversation/MessageInput.web.tsx +++ b/src/screens/Messages/Conversation/MessageInput.web.tsx @@ -63,7 +63,6 @@ export function MessageInput({ <View style={[ a.flex_row, - a.py_sm, a.px_sm, a.pl_md, t.atoms.bg_contrast_25, @@ -76,9 +75,10 @@ export function MessageInput({ a.border_0, t.atoms.text, { + paddingTop: 10, + paddingBottom: 12, backgroundColor: 'transparent', resize: 'none', - paddingTop: 4, }, ])} maxRows={12} @@ -98,7 +98,12 @@ export function MessageInput({ a.rounded_full, a.align_center, a.justify_center, - {height: 30, width: 30, backgroundColor: t.palette.primary_500}, + { + height: 30, + width: 30, + marginTop: 6, + backgroundColor: t.palette.primary_500, + }, ]} onPress={onSubmit}> <PaperPlane fill={t.palette.white} style={[a.relative, {left: 1}]} /> |