Skip to content

Commit 5aef9f8

Browse files
committed
Merge branch 'dev' of https://github.com/FE9-2/workroot into design/landing-fix
2 parents 0978cb4 + ecb0ea5 commit 5aef9f8

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

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)