diff options
Diffstat (limited to 'src/components/templates/layout/layout.stories.tsx')
| -rw-r--r-- | src/components/templates/layout/layout.stories.tsx | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/components/templates/layout/layout.stories.tsx b/src/components/templates/layout/layout.stories.tsx index f3579e3..2415412 100644 --- a/src/components/templates/layout/layout.stories.tsx +++ b/src/components/templates/layout/layout.stories.tsx @@ -36,7 +36,15 @@ export default { decorators: [ (Story) => ( <IntlProvider locale="en"> - <div id="__next"> + <div + id="__next" + style={{ + flex: 1, + display: 'flex', + flexFlow: 'column nowrap', + minHeight: '100vh', + }} + > <Story /> </div> </IntlProvider> |
