reactions: remove some left padding from add and remove buttons

Signed-off-by: William Casarin <jb55@jb55.com>
This commit is contained in:
Suhail Saqan
2023-08-05 14:08:06 -05:00
committed by William Casarin
parent ced3c76996
commit ccd52a09d8

View File

@@ -63,7 +63,7 @@ struct EmojiListItemView: View {
.resizable() .resizable()
.frame(width: 20, height: 20) .frame(width: 20, height: 20)
.foregroundColor(.red) .foregroundColor(.red)
.padding(.leading, 5) .padding(.leading, -5)
} }
} }
@@ -75,7 +75,7 @@ struct EmojiListItemView: View {
.resizable() .resizable()
.frame(width: 20, height: 20) .frame(width: 20, height: 20)
.foregroundColor(.green) .foregroundColor(.green)
.padding(.leading, 5) .padding(.leading, -5)
} }
} }
} }