Fix reaction list header item border (#2317)
This commit is contained in:
parent
50f8af2513
commit
73b8b49c81
2 changed files with 3 additions and 3 deletions
|
|
@ -18,7 +18,7 @@ exports[`ReactionHeaderItem should match snapshot 1`] = `
|
|||
},
|
||||
Object {
|
||||
"borderBottomWidth": 2,
|
||||
"borderColor": "rgba(61,60,64,0.2)",
|
||||
"borderColor": "transparent",
|
||||
},
|
||||
false,
|
||||
]
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ import {
|
|||
} from 'react-native';
|
||||
|
||||
import Emoji from 'app/components/emoji';
|
||||
import {changeOpacity, makeStyleSheetFromTheme} from 'app/utils/theme';
|
||||
import {makeStyleSheetFromTheme} from 'app/utils/theme';
|
||||
|
||||
import FormattedText from 'app/components/formatted_text';
|
||||
|
||||
|
|
@ -88,7 +88,7 @@ const getStyleSheet = makeStyleSheetFromTheme((theme) => {
|
|||
borderBottomWidth: 2,
|
||||
},
|
||||
regular: {
|
||||
borderColor: changeOpacity(theme.centerChannelColor, 0.2),
|
||||
borderColor: 'transparent',
|
||||
borderBottomWidth: 2,
|
||||
},
|
||||
reaction: {
|
||||
|
|
|
|||
Loading…
Reference in a new issue