[FIX] Emojis transparent on android (#1881)
Co-authored-by: Diego Mello <diegolmello@gmail.com>
This commit is contained in:
parent
48f90fb9a8
commit
6a36abadbf
|
@ -11263,6 +11263,7 @@ exports[`Storyshots Message list message 1`] = `
|
|||
<Text
|
||||
style={
|
||||
Object {
|
||||
"color": "#ffffff",
|
||||
"fontSize": 13,
|
||||
"marginLeft": 7,
|
||||
}
|
||||
|
@ -11444,6 +11445,7 @@ exports[`Storyshots Message list message 1`] = `
|
|||
<Text
|
||||
style={
|
||||
Object {
|
||||
"color": "#ffffff",
|
||||
"fontSize": 13,
|
||||
"marginLeft": 7,
|
||||
}
|
||||
|
@ -12171,6 +12173,7 @@ exports[`Storyshots Message list message 1`] = `
|
|||
<Text
|
||||
style={
|
||||
Object {
|
||||
"color": "#ffffff",
|
||||
"fontSize": 13,
|
||||
"marginLeft": 7,
|
||||
}
|
||||
|
@ -12250,6 +12253,7 @@ exports[`Storyshots Message list message 1`] = `
|
|||
<Text
|
||||
style={
|
||||
Object {
|
||||
"color": "#ffffff",
|
||||
"fontSize": 13,
|
||||
"marginLeft": 7,
|
||||
}
|
||||
|
@ -12329,6 +12333,7 @@ exports[`Storyshots Message list message 1`] = `
|
|||
<Text
|
||||
style={
|
||||
Object {
|
||||
"color": "#ffffff",
|
||||
"fontSize": 13,
|
||||
"marginLeft": 7,
|
||||
}
|
||||
|
@ -12408,6 +12413,7 @@ exports[`Storyshots Message list message 1`] = `
|
|||
<Text
|
||||
style={
|
||||
Object {
|
||||
"color": "#ffffff",
|
||||
"fontSize": 13,
|
||||
"marginLeft": 7,
|
||||
}
|
||||
|
@ -12487,6 +12493,7 @@ exports[`Storyshots Message list message 1`] = `
|
|||
<Text
|
||||
style={
|
||||
Object {
|
||||
"color": "#ffffff",
|
||||
"fontSize": 13,
|
||||
"marginLeft": 7,
|
||||
}
|
||||
|
|
|
@ -47,7 +47,8 @@ export default StyleSheet.create({
|
|||
},
|
||||
categoryEmoji: {
|
||||
backgroundColor: 'transparent',
|
||||
textAlign: 'center'
|
||||
textAlign: 'center',
|
||||
color: '#ffffff'
|
||||
},
|
||||
customCategoryEmoji: {
|
||||
margin: 8
|
||||
|
|
|
@ -61,7 +61,8 @@ export default StyleSheet.create({
|
|||
},
|
||||
reactionEmoji: {
|
||||
fontSize: 13,
|
||||
marginLeft: 7
|
||||
marginLeft: 7,
|
||||
color: '#ffffff'
|
||||
},
|
||||
reactionCustomEmoji: {
|
||||
width: 19,
|
||||
|
|
Loading…
Reference in New Issue