Fix jewel in team sidebar for android (#2386)

This commit is contained in:
Elias Nahum 2018-11-28 12:28:31 -03:00
parent e96624a990
commit 52109fd132
No known key found for this signature in database
GPG key ID: E038DB71E0B61702

View file

@ -4,6 +4,7 @@
import React from 'react';
import PropTypes from 'prop-types';
import {
Platform,
Text,
TouchableHighlight,
View,
@ -152,7 +153,14 @@ const getStyleSheet = makeStyleSheetFromTheme((theme) => {
padding: 3,
position: 'absolute',
left: 45,
top: -7.5,
...Platform.select({
ios: {
top: -7.5,
},
android: {
top: -2,
},
}),
},
mention: {
color: theme.mentionColor,