Automated cherry pick of #3127 (#3151)

* MM-17700 - Updating bot tag css

* Updating spacing for android
This commit is contained in:
Mattermost Build
2019-08-20 02:18:26 +02:00
committed by Miguel Alatzar
parent 57d148bbf9
commit f79c33099e

View File

@@ -3,6 +3,7 @@
import React, {PureComponent} from 'react';
import PropTypes from 'prop-types';
import {Platform, View} from 'react-native';
import {changeOpacity, makeStyleSheetFromTheme} from 'app/utils/theme';
import FormattedText from 'app/components/formatted_text';
@@ -23,11 +24,13 @@ export default class BotTag extends PureComponent {
const style = createStyleSheet(this.props.theme);
return (
<FormattedText
id='post_info.bot'
defaultMessage='BOT'
style={style.bot}
/>
<View style={style.bot}>
<FormattedText
id='post_info.bot'
defaultMessage='BOT'
style={style.botText}
/>
</View>
);
}
}
@@ -39,12 +42,20 @@ const createStyleSheet = makeStyleSheetFromTheme((theme) => {
backgroundColor: changeOpacity(theme.centerChannelColor, 0.15),
borderRadius: 2,
color: theme.centerChannelColor,
fontSize: 10,
fontWeight: '600',
marginRight: 5,
marginLeft: 5,
marginRight: 2,
marginBottom: 1,
...Platform.select({
android: {
marginBottom: 0,
},
}),
marginLeft: 2,
paddingVertical: 2,
paddingHorizontal: 4,
},
botText: {
fontSize: 10,
},
};
});