mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
rem values are relative to the root html element, not the body. see https://developer.mozilla.org/en-US/docs/Web/CSS/font-size#rems
10 lines
102 B
Plaintext
10 lines
102 B
Plaintext
```html
|
|
<!-- .storybook/preview-body.html -->
|
|
|
|
<style>
|
|
html {
|
|
font-size: 15px;
|
|
}
|
|
</style>
|
|
```
|