Skip to content

Commit

Permalink
Merge pull request #17850 from s77rt/remove-margin-emojiReactionBubble
Browse files Browse the repository at this point in the history
emojiReactionBubble style: remove unnecessary margins
  • Loading branch information
stitesExpensify authored Apr 25, 2023
2 parents d19326e + 965b97d commit 5494502
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/Reactions/ReportActionItemReactions.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ const ReportActionItemReactions = (props) => {
const reactionsWithCount = _.filter(props.reactions, reaction => reaction.users.length > 0);

return (
<View style={[styles.flexRow, styles.flexWrap]}>
<View style={[styles.flexRow, styles.flexWrap, styles.gap1, styles.mt2]}>
{_.map(reactionsWithCount, (reaction) => {
const reactionCount = reaction.users.length;
const reactionUsers = _.map(reaction.users, sender => sender.accountID.toString());
Expand Down
2 changes: 0 additions & 2 deletions src/styles/styles.js
Original file line number Diff line number Diff line change
Expand Up @@ -3028,8 +3028,6 @@ const styles = {
justifyContent: 'center',
flexDirection: 'row',
alignSelf: 'flex-start',
marginTop: 8,
marginRight: 4,
},

miniQuickEmojiReactionText: {
Expand Down
4 changes: 4 additions & 0 deletions src/styles/utilities/spacing.js
Original file line number Diff line number Diff line change
Expand Up @@ -442,6 +442,10 @@ export default {
paddingBottom: '10%',
},

gap1: {
gap: 4,
},

gap7: {
gap: 28,
},
Expand Down

0 comments on commit 5494502

Please sign in to comment.