RN-176 Fixed horizontal rules not rendering (#629)
This commit is contained in:
parent
ea6bace72f
commit
7e2192a052
1 changed files with 4 additions and 7 deletions
|
|
@ -63,12 +63,6 @@ export const getMarkdownTextStyles = makeStyleSheetFromTheme((theme) => {
|
|||
codeBlock: {
|
||||
fontFamily: codeFont
|
||||
},
|
||||
horizontalRule: {
|
||||
backgroundColor: theme.centerChannelColor,
|
||||
height: StyleSheet.hairlineWidth,
|
||||
flex: 1,
|
||||
marginVertical: 10
|
||||
},
|
||||
mention: {
|
||||
color: theme.linkColor
|
||||
}
|
||||
|
|
@ -84,7 +78,10 @@ export const getMarkdownBlockStyles = makeStyleSheetFromTheme((theme) => {
|
|||
paddingVertical: 2
|
||||
},
|
||||
horizontalRule: {
|
||||
backgroundColor: theme.centerChannelColor
|
||||
backgroundColor: theme.centerChannelColor,
|
||||
height: StyleSheet.hairlineWidth,
|
||||
flex: 1,
|
||||
marginVertical: 10
|
||||
},
|
||||
quoteBlock: {
|
||||
color: changeOpacity(theme.centerChannelColor, 0.5),
|
||||
|
|
|
|||
Loading…
Reference in a new issue