Skip to content

Commit

Permalink
docs: fix theming playground rendering (#1093)
Browse files Browse the repository at this point in the history
  • Loading branch information
danielhochman committed Oct 10, 2020
1 parent 630fa25 commit e1050a7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/src/components/ThemeLayout.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const PageLayout = ({ children }) => (
style={{ marginBottom: 160 }}
>
<div className="Content">
<DocsMDXProvider>{children}</DocsMDXProvider>
<DocsMDXProvider noInline>{children}</DocsMDXProvider>
</div>
</div>
</section>
Expand Down
2 changes: 1 addition & 1 deletion docs/src/pages/get-started/theming.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Please note: at this moment in time, theming isn't fully supported yet! There ar

## Simple theming

The `ThemeProvider` Component, you can either override the default styles(shown below) or use your own theme completely.
Using the `ThemeProvider` Component, you can either override the default styles (shown below) or use your own theme completely.
You can add anything you want to the theme object, as long as you have required properties.

```jsx
Expand Down

0 comments on commit e1050a7

Please sign in to comment.