Commit f4944bf 1 parent 790530a commit f4944bf Copy full SHA for f4944bf
File tree 3 files changed +8
-1
lines changed
3 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 1
1
import { buttonLayout } from './Button.styled' ;
2
2
3
3
interface ButtonProps {
4
- text : '선택' | '확인' | '다음' ;
4
+ text : string ;
5
5
active : boolean ;
6
6
onClick : ( ) => void ;
7
7
}
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ export const headerLayout = css`
4
4
display : flex;
5
5
justify-content : space-between;
6
6
align-items : center;
7
+ height : 7rem ;
7
8
` ;
8
9
9
10
export const gameTitle = css `
Original file line number Diff line number Diff line change 1
1
const color = {
2
2
// primary color
3
+ peanut200 : '#FFF0D4' ,
3
4
peanut300 : '#FFF4DF' ,
4
5
peanut400 : '#FFDD9A' ,
5
6
peanut500 : '#FFD076' ,
7
+
8
+ gray200 : '#F3F1F1' ,
9
+ gray300 : '#E4E4E4' ,
10
+ gray400 : '#9D9B9B' ,
11
+ gray500 : '#7A7A7A' ,
6
12
} as const ;
7
13
8
14
export const Theme = {
You can’t perform that action at this time.
0 commit comments