Skip to content

Commit

Permalink
Merge pull request #119 from iamacup/v-up
Browse files Browse the repository at this point in the history
version up
  • Loading branch information
iamacup authored Oct 16, 2020
2 parents f91ecb8 + aee12eb commit b860777
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-native-markdown-display",
"version": "6.1.6",
"version": "7.0.0-alpha",
"description": "Markdown renderer for react-native, with CommonMark spec support + adds syntax extensions & sugar (URL autolinking, typographer), originally created by Mient-jan Stelling as react-native-markdown-renderer",
"main": "src/index.js",
"types": "src/index.d.ts",
Expand Down
28 changes: 14 additions & 14 deletions src/lib/styles.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ export const styles = {

// Blockquotes
blockquote: {
backgroundColor: "#F5F5F5",
borderColor: "#CCC",
backgroundColor: '#F5F5F5',
borderColor: '#CCC',
borderLeftWidth: 4,
marginLeft: 5,
paddingHorizontal: 5,
Expand Down Expand Up @@ -93,11 +93,11 @@ export const styles = {
padding: 10,
borderRadius: 4,
...Platform.select({
["ios"]: {
fontFamily: "Courier",
['ios']: {
fontFamily: 'Courier',
},
["android"]: {
fontFamily: "monospace",
['android']: {
fontFamily: 'monospace',
},
}),
},
Expand All @@ -108,11 +108,11 @@ export const styles = {
padding: 10,
borderRadius: 4,
...Platform.select({
["ios"]: {
fontFamily: "Courier",
['ios']: {
fontFamily: 'Courier',
},
["android"]: {
fontFamily: "monospace",
['android']: {
fontFamily: 'monospace',
},
}),
},
Expand All @@ -123,11 +123,11 @@ export const styles = {
padding: 10,
borderRadius: 4,
...Platform.select({
["ios"]: {
fontFamily: "Courier",
['ios']: {
fontFamily: 'Courier',
},
["android"]: {
fontFamily: "monospace",
['android']: {
fontFamily: 'monospace',
},
}),
},
Expand Down

0 comments on commit b860777

Please sign in to comment.