-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #54 from LIKELION-SOGANG/feature/recruit-page#53
Recruit-page 스크롤 인터렉션 구현 완료
- Loading branch information
Showing
24 changed files
with
428 additions
and
172 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
File renamed without changes.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
81 changes: 56 additions & 25 deletions
81
src/app/(apply)/apply/container/PersonalInformationForm.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,29 +3,31 @@ import LikelionGreyLogo from '../../../../../public/icon/logo/likelion-grey.svg' | |
|
||
const SaveComplete = () => { | ||
return ( | ||
<div className="mt-[24.7rem] flex flex-col items-center"> | ||
<div> | ||
<LikelionGreyLogo /> | ||
</div> | ||
<div className="mt-[3.4rem] text-[1.6rem] font-bold"> | ||
김경우 님, 지원서 저장이 완료되었습니다. | ||
</div> | ||
<div className="text-[1.2rem] font-medium"> | ||
[email protected]로 발송된 고유 번호를 입력하여 지원서를 수정할 수 | ||
있습니다. | ||
</div> | ||
<div className="mt-[1.2rem] text-[#b7b7b7] text-[1.2rem] font-semibold"> | ||
최종 제출 시각: {new Date().toLocaleDateString()} | ||
<span> </span> | ||
{new Date().toLocaleTimeString()} | ||
</div> | ||
|
||
<div className="flex mt-[5.8rem] gap-[0.8rem]"> | ||
<div className="p-[0.6rem_1.3rem] bg-grey text-[#b7b7b7] text-[1.3rem] font-semibold rounded-[2rem]"> | ||
홈으로 돌아가기 | ||
<div className="flex items-center justify-center"> | ||
<div className="flex flex-col items-center"> | ||
<div> | ||
<LikelionGreyLogo /> | ||
</div> | ||
<div className="p-[0.6rem_1.3rem] bg-grey text-[#b7b7b7] text-[1.3rem] font-semibold rounded-[2rem]"> | ||
지원서 수정하기 | ||
<div className="mt-[3.4rem] text-[1.6rem] font-bold"> | ||
김경우 님, 지원서 저장이 완료되었습니다. | ||
</div> | ||
<div className="text-[1.2rem] font-medium"> | ||
[email protected]로 발송된 고유 번호를 입력하여 지원서를 수정할 수 | ||
있습니다. | ||
</div> | ||
<div className="mt-[1.2rem] text-[#b7b7b7] text-[1.2rem] font-semibold"> | ||
최종 제출 시각: {new Date().toLocaleDateString()} | ||
<span> </span> | ||
{new Date().toLocaleTimeString()} | ||
</div> | ||
|
||
<div className="flex mt-[5.8rem] gap-[0.8rem]"> | ||
<div className="cursor-pointer p-[0.6rem_1.3rem] bg-grey text-[#b7b7b7] text-[1.3rem] font-semibold rounded-[2rem]"> | ||
홈으로 돌아가기 | ||
</div> | ||
<div className="cursor-pointer p-[0.6rem_1.3rem] bg-grey text-[#b7b7b7] text-[1.3rem] font-semibold rounded-[2rem]"> | ||
지원서 수정하기 | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.