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:
Sudheer 2018-12-13 17:51:56 +05:30 committed by GitHub
parent 2542f69b90
commit 615c8f3b81
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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,