mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 04:11:06 +08:00
971 B
971 B
title |
---|
Story layout |
The layout
global parameter allows you to configure how stories are positioned in Storybook's Canvas tab.
You can add the parameter to your ./storybook/preview.js
, like so:
<CodeSnippets paths={[ 'common/storybook-preview-layout-param.js.mdx' ]} />
In the example above, Storybook will center all stories in the UI. layout
accepts these options:
centered
: center the component horizontally and vertically in the Canvasfullscreen
: allow the component to expand to the full width and height of the Canvaspadded
: Add extra padding around the component
If you want to use your own styles, or require a more granular approach we recommend using decorators instead.