Skip to content
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 src/app/(auth)/signup/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export default function SignupPage() {
{/* 지원자 회원가입 카드 */}
<Link
href="/signup/applicant"
className="bg-primary-blue-50 flex flex-1 flex-col items-center rounded-lg border-2 border-transparent p-8 transition-all hover:scale-105 hover:border-primary-orange-300 hover:shadow-xl"
className="flex flex-1 flex-col items-center rounded-lg border-2 border-transparent bg-primary-blue-50 p-8 transition-all hover:scale-105 hover:border-primary-orange-300 hover:shadow-lg"
>
<div className="flex h-24 w-24 items-center justify-center rounded-full bg-primary-orange-50">
<FaUser className="h-12 w-12 text-primary-orange-300" />
Expand All @@ -41,7 +41,7 @@ export default function SignupPage() {
{/* 사장님 회원가입 카드 */}
<Link
href="/signup/owner"
className="bg-primary-blue-50 flex flex-1 flex-col items-center rounded-lg border-2 border-transparent p-8 transition-all hover:scale-105 hover:border-primary-orange-300 hover:shadow-lg"
className="flex flex-1 flex-col items-center rounded-lg border-2 border-transparent bg-primary-blue-50 p-8 transition-all hover:scale-105 hover:border-primary-orange-300 hover:shadow-lg"
>
<div className="flex h-24 w-24 items-center justify-center rounded-full bg-primary-orange-50">
<MdStorefront className="h-14 w-14 text-primary-orange-300" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const DropdownItem = ({
<li
onClick={handleClick}
className={cn(
"hover:bg-primary-blue-50 flex w-full cursor-pointer bg-grayscale-50 px-[10px] py-2 text-sm font-normal leading-[18px] text-black-100 lg:text-lg lg:leading-[26px]",
"flex w-full cursor-pointer bg-grayscale-50 px-[10px] py-2 text-sm font-normal leading-[18px] text-black-100 hover:bg-primary-blue-50 lg:text-lg lg:leading-[26px]",
itemStyle
)}
>
Expand Down
4 changes: 2 additions & 2 deletions src/app/components/modal/modals/apply/MyApplicationModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const InfoRow = ({ label, value, isIntroduction }: InfoRowProps) => {
return (
<div className="flex justify-between border-b pb-2">
<span className="text-grayscale-400">{label}</span>
<span className={label === "지원 상태" ? "text-primary-orange-500 font-medium" : ""}>{value}</span>
<span className={label === "지원 상태" ? "font-medium text-primary-orange-500" : ""}>{value}</span>
</div>
);
};
Expand Down Expand Up @@ -66,7 +66,7 @@ const ResumeDownloadButton = ({ resumeId, resumeName }: ResumeDownloadProps) =>
return (
<div className="flex w-full items-center justify-between border-b pb-2">
<span className="text-grayscale-400">이력서 다운로드</span>
<button onClick={handleResumeDownload} className="hover:text-primary-orange-500 transition-colors">
<button onClick={handleResumeDownload} className="transition-colors hover:text-primary-orange-500">
{downloading ? <FaCheckCircle className="text-2xl" /> : <FiDownload className="text-2xl" />}
</button>
</div>
Expand Down
Loading