Skip to content

Commit a3ed6cd

Browse files
committed
fix: 공통 스타일 변경 #46
1 parent c179f82 commit a3ed6cd

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

frontend/src/components/common/Button/Button.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { buttonLayout } from './Button.styled';
22

33
interface ButtonProps {
4-
text: '선택' | '확인' | '다음';
4+
text: string;
55
active: boolean;
66
onClick: () => void;
77
}

frontend/src/components/layout/Header/Header.styled.ts

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ export const headerLayout = css`
44
display: flex;
55
justify-content: space-between;
66
align-items: center;
7+
height: 7rem;
78
`;
89

910
export const gameTitle = css`

frontend/src/styles/Theme.ts

+6
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
11
const color = {
22
// primary color
3+
peanut200: '#FFF0D4',
34
peanut300: '#FFF4DF',
45
peanut400: '#FFDD9A',
56
peanut500: '#FFD076',
7+
8+
gray200: '#F3F1F1',
9+
gray300: '#E4E4E4',
10+
gray400: '#9D9B9B',
11+
gray500: '#7A7A7A',
612
} as const;
713

814
export const Theme = {

0 commit comments

Comments
 (0)