diff --git a/app/components/channel_drawer/channels_list/index.js b/app/components/channel_drawer/channels_list/index.js index 054a7c587..82e597dbb 100644 --- a/app/components/channel_drawer/channels_list/index.js +++ b/app/components/channel_drawer/channels_list/index.js @@ -265,6 +265,7 @@ const getStyleSheet = makeStyleSheetFromTheme((theme) => { }, headerContainer: { alignItems: 'center', + paddingLeft: 10, backgroundColor: theme.sidebarHeaderBg, flexDirection: 'row', borderBottomWidth: 1, @@ -337,7 +338,7 @@ const getStyleSheet = makeStyleSheetFromTheme((theme) => { flexDirection: 'row', height: 32, justifyContent: 'center', - marginLeft: 16, + marginLeft: 6, marginRight: 10, paddingHorizontal: 6 }, diff --git a/app/components/channel_drawer/channels_list/list/list.js b/app/components/channel_drawer/channels_list/list/list.js index 7ced2d444..4e469820a 100644 --- a/app/components/channel_drawer/channels_list/list/list.js +++ b/app/components/channel_drawer/channels_list/list/list.js @@ -330,7 +330,7 @@ class List extends Component { {action && this.renderSectionAction(styles, action)} - {bottomDivider && this.renderDivider(styles, 16)} + {bottomDivider && this.renderDivider(styles, 0)} ) }; diff --git a/app/components/channel_drawer/teams_list/teams_list.js b/app/components/channel_drawer/teams_list/teams_list.js index e97cd3fb3..9a5f92dd6 100644 --- a/app/components/channel_drawer/teams_list/teams_list.js +++ b/app/components/channel_drawer/teams_list/teams_list.js @@ -235,7 +235,6 @@ const getStyleSheet = makeStyleSheetFromTheme((theme) => { alignItems: 'center', backgroundColor: theme.sidebarHeaderBg, flexDirection: 'row', - paddingLeft: 16, borderBottomWidth: 1, borderBottomColor: changeOpacity(theme.sidebarHeaderTextColor, 0.10), ...Platform.select({ @@ -251,7 +250,8 @@ const getStyleSheet = makeStyleSheetFromTheme((theme) => { color: theme.sidebarHeaderTextColor, flex: 1, fontSize: 17, - fontWeight: 'normal' + textAlign: 'center', + fontWeight: '600' }, moreActionContainer: { alignItems: 'center', diff --git a/app/components/post_textbox/post_textbox.js b/app/components/post_textbox/post_textbox.js index 37e0fe17c..07c7d27c0 100644 --- a/app/components/post_textbox/post_textbox.js +++ b/app/components/post_textbox/post_textbox.js @@ -528,13 +528,22 @@ const getStyleSheet = makeStyleSheetFromTheme((theme) => { sendButton: { backgroundColor: theme.buttonBg, borderRadius: 18, - marginBottom: 3, marginRight: 5, height: 28, width: 28, alignItems: 'center', justifyContent: 'center', - paddingLeft: 2 + paddingLeft: 2, + ...Platform.select({ + ios: { + marginBottom: 3 + }, + android: { + height: 29, + marginBottom: 4, + width: 29 + } + }) }, typing: { paddingLeft: 10,