From 85382e695a686039039dc5714764748050bd6677 Mon Sep 17 00:00:00 2001 From: Miguel Alatzar Date: Thu, 1 Oct 2020 11:19:30 -0700 Subject: [PATCH] [MM-29132] Update upload item styling (#4853) * Update upload item styling * Use font size 9 --- .../post_draft/uploads/upload_item/upload_item.js | 2 +- .../post_draft/uploads/upload_item/upload_remove.js | 8 -------- 2 files changed, 1 insertion(+), 9 deletions(-) diff --git a/app/components/post_draft/uploads/upload_item/upload_item.js b/app/components/post_draft/uploads/upload_item/upload_item.js index d198ceb98..aade01deb 100644 --- a/app/components/post_draft/uploads/upload_item/upload_item.js +++ b/app/components/post_draft/uploads/upload_item/upload_item.js @@ -266,7 +266,7 @@ const styles = StyleSheet.create({ }, progressText: { color: 'white', - fontSize: 11, + fontSize: 9, fontWeight: 'bold', }, filePreview: { diff --git a/app/components/post_draft/uploads/upload_item/upload_remove.js b/app/components/post_draft/uploads/upload_item/upload_remove.js index 5280b60ab..d434920b8 100644 --- a/app/components/post_draft/uploads/upload_item/upload_remove.js +++ b/app/components/post_draft/uploads/upload_item/upload_remove.js @@ -38,7 +38,6 @@ export default class UploadRemove extends PureComponent { name='close-circle' color={changeOpacity(theme.centerChannelColor, 0.64)} size={21} - style={style.removeIcon} /> @@ -65,12 +64,5 @@ const getStyleSheet = makeStyleSheetFromTheme((theme) => { }), backgroundColor: theme.centerChannelBg, }, - removeIcon: { - position: 'relative', - top: Platform.select({ - ios: 1, - android: 0, - }), - }, }; });