Skip to content

Commit

Permalink
refactor: inline style ์ ์šฉ
Browse files Browse the repository at this point in the history
  • Loading branch information
Jungjjeong committed Jul 29, 2024
1 parent 681c53c commit e9726ca
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
4 changes: 1 addition & 3 deletions components/molecules/bottom-sheet/bottom-sheet.stories.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
import type { Meta, StoryObj } from '@storybook/react';

import { css } from '@/styled-system/css';

import { BottomSheet, BottomSheetProps } from './bottom-sheet';

const meta: Meta<typeof BottomSheet> = {
Expand All @@ -10,7 +8,7 @@ const meta: Meta<typeof BottomSheet> = {
tags: ['autodocs'],
decorators: [
(Story) => (
<div className={css({ minHeight: 500 })}>
<div style={{ minHeight: 500 }}>
<Story />
</div>
),
Expand Down
4 changes: 1 addition & 3 deletions components/molecules/dialog/dialog.stories.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
import type { Meta, StoryObj } from '@storybook/react';

import { css } from '@/styled-system/css';

import { Dialog, DialogProps } from './dialog';

const meta: Meta<typeof Dialog> = {
Expand All @@ -10,7 +8,7 @@ const meta: Meta<typeof Dialog> = {
tags: ['autodocs'],
decorators: [
(Story) => (
<div className={css({ minHeight: 500 })}>
<div style={{ minHeight: 500 }}>
<Story />
</div>
),
Expand Down

0 comments on commit e9726ca

Please sign in to comment.