Skip to content

Commit

Permalink
Merge branch 'develop' into feature/63-BookmarkFix
Browse files Browse the repository at this point in the history
  • Loading branch information
KANGYONGSU23 authored Apr 5, 2024
2 parents 899342f + ec20888 commit 2a4ef91
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 10 deletions.
8 changes: 8 additions & 0 deletions src/app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -91,10 +91,18 @@ table {
background-color: white;
padding-left: 40px;
padding-right: 40px;
position: relative;
}
& .file {
display: flex;
gap: 10px;
flex-wrap: wrap;
}
& .easteregg {
position: absolute;
height: 20px;
width: 100%;
left: 0px;
backdrop-filter: blur(10px);
}
}
26 changes: 16 additions & 10 deletions src/components/recruitments/RecruitmentsTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@ function RecruitmentsTable({ ...rest }: RecruitmentsDetailTable) {
working_hours,
required_licenses,
hiring_progress,
train_pay,
pay,
benefits,
military,
submit_document,
Expand Down Expand Up @@ -101,6 +99,14 @@ function RecruitmentsTable({ ...rest }: RecruitmentsDetailTable) {
</>
);
})}
<tr>
<td className="key">모집일</td>
<td className="value">
{start_date && end_date
? start_date + " ~ " + end_date
: "상시채용"}
</td>
</tr>
<tr>
<td className="key">최소성적</td>
<td className="value">
Expand All @@ -125,6 +131,14 @@ function RecruitmentsTable({ ...rest }: RecruitmentsDetailTable) {
.join(" > ")}
</td>
</tr>
<tr>
<td className="key">실습 수당</td>
<td className="value">이스터에그 입니다 ^^<div className="easteregg" /></td>
</tr>
<tr>
<td className="key">정규직 전환 시</td>
<td className="value">안 보여 줄 거지롱~<div className="easteregg" /></td>
</tr>
<tr>
<td className="key">복지</td>
<td className="value">{benefits || "-"}</td>
Expand All @@ -137,14 +151,6 @@ function RecruitmentsTable({ ...rest }: RecruitmentsDetailTable) {
<td className="key">제출 서류</td>
<td className="value">{submit_document}</td>
</tr>
<tr>
<td className="key">모집일</td>
<td className="value">
{start_date && end_date
? start_date + " ~ " + end_date
: "상시채용"}
</td>
</tr>
<tr>
<td className="key">기타</td>
<td className="value">{etc || "-"}</td>
Expand Down

0 comments on commit 2a4ef91

Please sign in to comment.