Skip to content

Commit

Permalink
Merge pull request #152 from softeerbootcamp4th/feat/#151-casper-ux-ui
Browse files Browse the repository at this point in the history
[Feat] 캐스퍼 봇 커스텀 UX/UI 개선
  • Loading branch information
sooyeoniya authored Aug 15, 2024
2 parents 3eff6f8 + 92ae00d commit ec4c890
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions client/src/constants/CasperCustom/casper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ export const CASPER_MOUTH_SIZE = {
},
[MOUTH_OPTION.MOCKING]: {
WIDTH: 170,
TOP: 90,
TOP: 94,
},
[MOUTH_OPTION.SMILE]: {
WIDTH: 170,
Expand All @@ -360,7 +360,7 @@ export const CASPER_MOUTH_SIZE = {
},
[MOUTH_OPTION.MOCKING]: {
WIDTH: 126,
TOP: 59,
TOP: 60,
},
[MOUTH_OPTION.SMILE]: {
WIDTH: 128,
Expand Down
4 changes: 2 additions & 2 deletions client/src/features/CasperCustom/CasperCustomFinishing.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ export function CasperCustomFinishing({ navigateNextStep }: CasperCustomFinishin

const flipTimer = setTimeout(() => {
setIsFlipped(true);
}, 3000);
}, 2000);

const navigateTimer = setTimeout(() => {
navigateNextStep();
}, 6000);
}, 4000);

return () => {
clearTimeout(flipTimer);
Expand Down

0 comments on commit ec4c890

Please sign in to comment.