Fix jewel in team sidebar for android (#2386)
This commit is contained in:
parent
e96624a990
commit
52109fd132
1 changed files with 9 additions and 1 deletions
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Reference in a new issue