Rocket.Chat.ReactNative/app/containers/message/styles.js

23 lines
355 B
JavaScript
Raw Normal View History

import { StyleSheet } from 'react-native';
export default StyleSheet.create({
content: {
flexGrow: 1,
flexShrink: 1
},
message: {
padding: 12,
paddingTop: 6,
paddingBottom: 6,
flexDirection: 'row',
transform: [{ scaleY: -1 }]
},
textInfo: {
fontStyle: 'italic',
color: '#a0a0a0'
},
editing: {
backgroundColor: '#fff5df'
}
});