Skip to content

Commit

Permalink
Merge pull request #73 from softeerbootcamp4th/hotfix/updateChore
Browse files Browse the repository at this point in the history
[Hotfix] head 태그 내에 아이콘과 타이틀 수정
  • Loading branch information
Dunkkkk authored Aug 25, 2024
2 parents 3f461e4 + b40f229 commit bcf350b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions Caecae/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<link rel="icon" type="image/svg+xml" href="./public/assets/whiteBadge.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + React + TS</title>
<title>Caecae</title>
</head>
<body>
<div id="root"></div>
Expand Down
10 changes: 5 additions & 5 deletions Caecae/src/components/RacingGame/RacingGame.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ const gameContent = (
case "previous":
case "enterEvent":
return (
<div className="absolute left-[35%] top-[70px] z-40 flex flex-col items-center justify-center font-galmuri">
<div className="absolute left-[35%] top-[70px] z-40 flex flex-col items-center justify-center font-galmuri select-none">
<div className="font-bold text-xl mb-2 pr-5 text-[#A8A8A8]">CASPER ELECTRIC</div>
<div className=" text-[44px] mb-2 text-[#666666]">전력으로...!</div>
<div className="mt-5">
Expand All @@ -321,7 +321,7 @@ const gameContent = (
);
case "playing":
return (
<div className="absolute left-[37%] top-[70px] z-40 flex flex-col items-center justify-center font-galmuri">
<div className="absolute left-[37%] top-[70px] z-40 flex flex-col items-center justify-center font-galmuri select-none">
<div className="font-bold text-xl mb-2 text-[#A8A8A8]">Game Score</div>
<div className="font-bold mb-2 text-[52px]">{distance.toFixed(3)} KM</div>
<div className="flex flex-row items-center justify-center mt-2">
Expand All @@ -334,7 +334,7 @@ const gameContent = (
);
case "end":
return (
<div className="absolute left-[37%] top-[70px] z-40 flex flex-col items-center justify-center font-galmuri">
<div className="absolute left-[37%] top-[70px] z-40 flex flex-col items-center justify-center font-galmuri select-none">
<div className="flex flex-col items-center justify-center">
<div className="font-bold text-xl mb-1 text-[#A8A8A8]">Game Score</div>
<div className="flex flex-row space-x-2">
Expand Down Expand Up @@ -379,15 +379,15 @@ const gameMenu = (
case "playing":
case "enterEvent":
return (
<div className="absolute right-[50px] top-[30px] z-40 font-galmuri text-[#494949] text-xl">
<div className="absolute right-[50px] top-[30px] z-40 font-galmuri text-[#494949] text-xl select-none">
<Link to="/racecasper">
<button>게임 종료</button>
</Link>
</div>
);
case "end":
return (
<div className="absolute right-[50px] top-[30px] z-40 space-x-10 font-galmuri text-[#494949] text-xl">
<div className="absolute right-[50px] top-[30px] z-40 space-x-10 font-galmuri text-[#494949] text-xl select-none">
<button onClick={shareGameScore}>
기록 자랑하기
</button>
Expand Down
2 changes: 1 addition & 1 deletion Caecae/src/features/EventInfoLanding/DarkTeaserCasper.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const DarkTeaserCasper = () => {
<div className="flex w-full h-screen justify-center items-center relative">
<div className="flex flex-col absolute z-20 justify-center items-center">
<h1 className="text-white text-[52px] font-bold">"사기캐 등장."</h1>
<p className="text-center text-white text-[24px] text-transparent bg-clip-text bg-gradient-to-r from-[#D9D9D9] to-[#737373] mt-5">
<p className="text-center text-[24px] text-transparent bg-clip-text bg-gradient-to-r from-[#D9D9D9] to-[#737373] mt-5">
다양한 매력을 가진 캐스퍼 일렉트릭과 함께
<br />
캐미를 발휘해 캐스퍼 일렉트릭의 파트너가 되어보세요.
Expand Down

0 comments on commit bcf350b

Please sign in to comment.