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

[Hotfix] head 태그 내에 아이콘과 타이틀 수정 #73

Merged
merged 3 commits into from
Aug 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading