Skip to content

Commit 878e40c

Browse files
committed
fix: 빌드 프리티어 에러 수정
1 parent 36ade68 commit 878e40c

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/app/(auth)/signup/page.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export default function SignupPage() {
2222
{/* 지원자 회원가입 카드 */}
2323
<Link
2424
href="/signup/applicant"
25-
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"
25+
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"
2626
>
2727
<div className="flex h-24 w-24 items-center justify-center rounded-full bg-primary-orange-50">
2828
<FaUser className="h-12 w-12 text-primary-orange-300" />
@@ -41,7 +41,7 @@ export default function SignupPage() {
4141
{/* 사장님 회원가입 카드 */}
4242
<Link
4343
href="/signup/owner"
44-
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"
44+
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"
4545
>
4646
<div className="flex h-24 w-24 items-center justify-center rounded-full bg-primary-orange-50">
4747
<MdStorefront className="h-14 w-14 text-primary-orange-300" />

src/app/components/button/dropdown/dropdownComponent/DropdownList.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const DropdownItem = ({
2121
<li
2222
onClick={handleClick}
2323
className={cn(
24-
"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]",
24+
"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]",
2525
itemStyle
2626
)}
2727
>

src/app/components/modal/modals/apply/MyApplicationModal.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ const InfoRow = ({ label, value, isIntroduction }: InfoRowProps) => {
3636
return (
3737
<div className="flex justify-between border-b pb-2">
3838
<span className="text-grayscale-400">{label}</span>
39-
<span className={label === "지원 상태" ? "text-primary-orange-500 font-medium" : ""}>{value}</span>
39+
<span className={label === "지원 상태" ? "font-medium text-primary-orange-500" : ""}>{value}</span>
4040
</div>
4141
);
4242
};
@@ -66,7 +66,7 @@ const ResumeDownloadButton = ({ resumeId, resumeName }: ResumeDownloadProps) =>
6666
return (
6767
<div className="flex w-full items-center justify-between border-b pb-2">
6868
<span className="text-grayscale-400">이력서 다운로드</span>
69-
<button onClick={handleResumeDownload} className="hover:text-primary-orange-500 transition-colors">
69+
<button onClick={handleResumeDownload} className="transition-colors hover:text-primary-orange-500">
7070
{downloading ? <FaCheckCircle className="text-2xl" /> : <FiDownload className="text-2xl" />}
7171
</button>
7272
</div>

0 commit comments

Comments
 (0)