Skip to content

Commit

Permalink
fix: 컨테이너 스토리북 스타일 문제 수정 및 autodocs 삭제
Browse files Browse the repository at this point in the history
  • Loading branch information
steven-yn committed Dec 28, 2023
1 parent 2721ff5 commit fcb5d3f
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/stories/Common/Container.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ import { flexCenter } from '@/styles/common/flex.css';
const meta: Meta<typeof Container> = {
title: 'Common/Container',
component: Container,
tags: ['autodocs'],
parameters: {
layout: 'fullscreen',
viewport: {
Expand All @@ -34,6 +33,7 @@ const Sample = ({
flexCenter,
)}
style={{
width: '100%',
height: '100%',
}}
>
Expand Down
12 changes: 12 additions & 0 deletions src/types/designToken/BreakPoints.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
interface BreakPointsTokenInterface {
'breakpoint-s': 'screen and (max-width: 599px)';
'breakpoint-m': 'screen and (max-width: 839px)';
'breakpoint-l': 'screen and (max-width: 1023px)';
'breakpoint-xl': 'screen and (max-width: 1280px)';
}

type BreakPointsToken =
| 'breakpoint-s'
| 'breakpoint-m'
| 'breakpoint-l'
| 'breakpoint-xl';

0 comments on commit fcb5d3f

Please sign in to comment.