From 0a4e2a626166176207dbe366c036e6e122cb5f1a Mon Sep 17 00:00:00 2001 From: Joo Chanhwi <56245920+te6-in@users.noreply.github.com> Date: Wed, 27 Nov 2024 12:45:12 +0900 Subject: [PATCH] fix: wrap story with body --- docs/stories/components/decorator.tsx | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/docs/stories/components/decorator.tsx b/docs/stories/components/decorator.tsx index 0f5ceabb5..cc0c779d2 100644 --- a/docs/stories/components/decorator.tsx +++ b/docs/stories/components/decorator.tsx @@ -26,7 +26,9 @@ export const SeedThemeDecorator: Decorator = (Story, ctx) => { if (ctx.name === STORY_LIGHT_THEME) { return ( - + + + ); } @@ -34,7 +36,9 @@ export const SeedThemeDecorator: Decorator = (Story, ctx) => { if (ctx.name === STORY_DARK_THEME) { return ( - + + + ); } @@ -59,14 +63,18 @@ export const SeedThemeDecorator: Decorator = (Story, ctx) => { data-seed-scale-color="light" style={{ ...DEFAULT_PROPERTIES.style, fontSize: fontScaleMap[fontScale] }} > - + + + ); } return ( - + + + ); };