Skip to content

Commit

Permalink
πŸ› fix: D day κ°œν–‰ λ˜λŠ” 문제 Team-inglo#129
Browse files Browse the repository at this point in the history
  • Loading branch information
naarang committed Nov 25, 2024
1 parent ade0c6f commit a203394
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/components/Common/JobPostingCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ const JobPostingCard = ({ jobPostingData }: JobPostingCardProps) => {
<div className="mb-[0.5rem] flex items-center gap-[0.625rem]">
{jobPostingData?.icon_img_url ? (
<div
className="w-[2rem] h-[2rem] rounded-[0.5rem] bg-cover"
className="w-[2rem] h-[2rem] min-w-[2rem] rounded-[0.5rem] bg-cover"
style={{
backgroundImage: `url(${jobPostingData.icon_img_url})`,
}}
Expand Down Expand Up @@ -90,7 +90,7 @@ const JobPostingCard = ({ jobPostingData }: JobPostingCardProps) => {
</div>
</div>
</div>
<div className="flex items-center gap-[0.5rem]">
<div className="flex items-center gap-[0.5rem] min-w-fit">
<Tag
value={
jobPostingData.recruitment_dead_line === 'μƒμ‹œλͺ¨μ§‘'
Expand Down
2 changes: 1 addition & 1 deletion src/components/PostSearch/PostSearchFilterList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ const PostSearchFilterList = () => {
))}
</div>
<button
className="absolute top-0 right-0 px-[0.5rem] py-[0.75rem]"
className="absolute top-0 right-0 px-2 pr-6 py-[0.75rem] bg-white"
onClick={goToPostSearchFilterPage}
>
<FilterIcon />
Expand Down

0 comments on commit a203394

Please sign in to comment.