Update Custom Body Documentation (#9613)

Update Custom Body Documentation
This commit is contained in:
Michael Shilman 2020-01-23 23:05:56 +08:00 committed by Michael Shilman
parent b899fcad89
commit fce1f5352f

View File

@ -11,6 +11,16 @@ You can accomplish this by creating a file called `preview-body.html` inside the
<div id="custom-root"></div>
```
If using relative sizing in your project (like `rem` or `em`), you may update the base `font-size` by adding a `style` tag to `preview-body.html`:
```html
<style>
body {
font-size: 15px;
}
</style>
```
That's it. Storybook will inject these tags to html body.
> **Important**