Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Feature/BAR-49] 디자인 시스템 반영 #13

Merged
merged 10 commits into from
Dec 27, 2023
8 changes: 4 additions & 4 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,10 @@
"warn",
{
"groups": [
// Library imports (related with next is first)
["next", "^\\w"],
// Side effect imports
["^\\u0000"]
["^next", "^react", "^@\\w", "^\\w"],
["^\\u0000"],
["^@/"],
["^\\."]
]
}
]
Expand Down
1 change: 0 additions & 1 deletion src/components/Providers/TanstackQueryProvider.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { type PropsWithChildren, useState } from 'react';

import {
type DehydratedState,
HydrationBoundary,
Expand Down
26 changes: 0 additions & 26 deletions src/components/common/Flex/Flex.stories.tsx

This file was deleted.

38 changes: 0 additions & 38 deletions src/components/common/Flex/Flex.tsx

This file was deleted.

49 changes: 0 additions & 49 deletions src/components/common/Grid/Grid.stories.tsx

This file was deleted.

38 changes: 0 additions & 38 deletions src/components/common/Grid/Grid.tsx

This file was deleted.

40 changes: 0 additions & 40 deletions src/components/common/Grid/GridItem.tsx

This file was deleted.

29 changes: 0 additions & 29 deletions src/components/common/utils.tsx

This file was deleted.

7 changes: 4 additions & 3 deletions src/styles/global.css.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { fontFamily } from './variants.css';
import { globalStyle } from '@vanilla-extract/css';

import { theme } from './theme.css';

globalStyle('*, *:after, *:before', {
boxSizing: 'border-box',
});
Expand All @@ -13,7 +14,7 @@ globalStyle(
border: 0,
fontSize: '16px',
verticalAlign: 'baseline',
fontFamily: fontFamily.pretendard,
fontFamily: theme.font.pretendard,
},
);

Expand Down Expand Up @@ -45,7 +46,7 @@ globalStyle('button, select, input, textarea', {
border: 0,
outline: 0,
backgroundColor: 'transparent',
fontFamily: fontFamily.pretendard,
fontFamily: theme.font.pretendard,
});

globalStyle('a, button', {
Expand Down
Loading
Loading