From 9f61c2778c42aa10802b41d8255a1c52067102fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Espino=20Garc=C3=ADa?= Date: Fri, 11 Mar 2022 13:03:48 +0100 Subject: [PATCH] Add Input radius (#6044) --- app/components/post_draft/draft_input/index.tsx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/app/components/post_draft/draft_input/index.tsx b/app/components/post_draft/draft_input/index.tsx index bf4e2b43e1d..3a522829e2d 100644 --- a/app/components/post_draft/draft_input/index.tsx +++ b/app/components/post_draft/draft_input/index.tsx @@ -69,8 +69,10 @@ const getStyleSheet = makeStyleSheetFromTheme((theme) => { justifyContent: 'center', paddingBottom: 2, backgroundColor: theme.centerChannelBg, - borderTopWidth: 1, - borderTopColor: changeOpacity(theme.centerChannelColor, 0.20), + borderWidth: 1, + borderColor: changeOpacity(theme.centerChannelColor, 0.20), + borderTopLeftRadius: 12, + borderTopRightRadius: 12, }, }; });