Skip to content

Commit 1c32831

Browse files
authored
Merge branch 'master' into fix-uncaught-localStorage-exception
2 parents 9bd1008 + 9163f48 commit 1c32831

File tree

75 files changed

+1537
-803
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

75 files changed

+1537
-803
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
## Unreleased
44

55
- `@theme-ui/components`: on Grid component, allow custom `columns` definitions via strings #541
6+
- `@theme-ui/gatsby-theme-style-guide`: add docs on shadowing #558
7+
- Adds `@theme-ui/preset-polaris` #567
8+
- Adjusts default font stack in presets #568
69

710
## v0.2.53 2019-12-19
811

examples/create-react-app/src/theme.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ export default {
66
secondary: '#609',
77
},
88
fonts: {
9-
body: 'system-ui, sans-serif',
9+
body:
10+
'system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif',
1011
heading: 'inherit',
1112
},
1213
styles: {

examples/custom-pragma/src/theme.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ export default {
66
secondary: '#609',
77
},
88
fonts: {
9-
body: 'system-ui, sans-serif',
9+
body:
10+
'system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif',
1011
heading: 'inherit',
1112
monospace: 'Menlo, monospace',
1213
},

examples/dark-mode/src/theme.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ export default {
1414
},
1515
},
1616
fonts: {
17-
body: 'system-ui, sans-serif',
17+
body:
18+
'system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif',
1819
heading: 'inherit',
1920
},
2021
lineHeights: {

examples/gatsby-plugin/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"@testing-library/react": "^9.1.3",
2525
"husky": ">=1",
2626
"jest": "^24.8.0",
27-
"lint-staged": "9",
27+
"lint-staged": "10",
2828
"react-test-renderer": "^16.8.6"
2929
}
3030
}

examples/gatsby-plugin/src/gatsby-plugin-theme-ui/index.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ export default {
88
secondary: '#609',
99
},
1010
fonts: {
11-
body: 'system-ui, sans-serif',
11+
body:
12+
'system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif',
1213
heading: 'inherit',
1314
},
1415
lineHeights: {

examples/gatsby/src/theme.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ export default {
66
secondary: '#609',
77
},
88
fonts: {
9-
body: 'system-ui, sans-serif',
9+
body:
10+
'system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif',
1011
heading: 'inherit',
1112
},
1213
styles: {

examples/next/src/theme.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ export default {
1515
},
1616
},
1717
fonts: {
18-
body: 'system-ui, sans-serif',
18+
body:
19+
'system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif',
1920
heading: 'inherit',
2021
},
2122
styles: {

examples/prism/src/theme.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ export default {
77
lightgray: '#fafafa',
88
},
99
fonts: {
10-
body: 'system-ui, sans-serif',
10+
body:
11+
'system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif',
1112
heading: 'inherit',
1213
monospace: 'Menlo, monospace',
1314
},

lerna.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,5 @@
22
"version": "0.2.53",
33
"npmClient": "yarn",
44
"useWorkspaces": true,
5-
"packages": [
6-
"packages/*"
7-
]
5+
"packages": ["packages/*"]
86
}

0 commit comments

Comments
 (0)