RN-176 Fixed horizontal rules not rendering (#629)

This commit is contained in:
Harrison Healey 2017-06-14 10:58:17 -04:00 committed by enahum
parent ea6bace72f
commit 7e2192a052

View file

@ -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),