MM-13333 Fix minor alignment issue with reply thread indicator (#2456)
* Add a pixel to margin right for profile_picture container
to compensate status icon platform styles
This commit is contained in:
parent
4c606ed752
commit
f2fc1db00c
1 changed files with 10 additions and 1 deletions
|
|
@ -383,9 +383,18 @@ const getStyleSheet = makeStyleSheetFromTheme((theme) => {
|
|||
},
|
||||
profilePictureContainer: {
|
||||
marginBottom: 5,
|
||||
marginRight: 10,
|
||||
marginLeft: 12,
|
||||
marginTop: 10,
|
||||
|
||||
// to compensate STATUS_BUFFER in profile_picture component
|
||||
...Platform.select({
|
||||
android: {
|
||||
marginRight: 11,
|
||||
},
|
||||
ios: {
|
||||
marginRight: 10,
|
||||
},
|
||||
}),
|
||||
},
|
||||
replyBar: {
|
||||
backgroundColor: theme.centerChannelColor,
|
||||
|
|
|
|||
Loading…
Reference in a new issue