Skip to content

Commit ebc4aa9

Browse files
Merge pull request #355 from PinHouse/develop
[Chore] - develop 브렌치 소스코드 main브렌치로 병합
2 parents 31639e2 + 63b06a3 commit ebc4aa9

3 files changed

Lines changed: 11 additions & 4 deletions

File tree

src/features/home/ui/homeActionCardList.tsx

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,9 @@ export const ActionCardList = () => {
2222
onClick={onListingsPageMove}
2323
>
2424
<div className="flex items-center justify-between text-white">
25-
<p className="text-sm font-bold leading-tight opacity-[0.7]">핀포인트 기준</p>
25+
<p className="text-sm font-bold leading-tight opacity-[0.7] hover:cursor-pointer">
26+
핀포인트 기준
27+
</p>
2628
<div className="flex items-center justify-center">
2729
<ArrowUpRight />
2830
</div>
@@ -37,7 +39,9 @@ export const ActionCardList = () => {
3739
onClick={onEligibilityPageMove}
3840
>
3941
<div className="flex items-center justify-between text-white">
40-
<p className="text-sm font-bold leading-tight opacity-[0.7]">자격진단 기준</p>
42+
<p className="text-sm font-bold leading-tight opacity-[0.7] hover:cursor-pointer">
43+
자격진단 기준
44+
</p>
4145

4246
<div className="flex items-center justify-center">
4347
<ArrowUpRight />

src/features/home/ui/homeQuickStatsList.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,10 @@ export const QuickStatsList = () => {
3535
<span>최대시간</span>
3636
</div>
3737

38-
<div className="mt-2 flex gap-4" onClick={() => onSelectSection("pinpoints")}>
38+
<div
39+
className="mt-2 flex gap-4 hover:cursor-pointer"
40+
onClick={() => onSelectSection("pinpoints")}
41+
>
3942
<span className="flex flex-col text-lg font-semibold leading-none">
4043
<p>{line1}</p>
4144
<p>{line2}</p>

src/shared/ui/globalRender/globalRender.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ export const HomeLandingRender = ({ children, bottom }: Props) => {
5858
</section>
5959

6060
<section className="relative z-10 flex h-full min-h-[812px] justify-center sm:p-5 md:pb-[90px] md:pt-16 lg:pb-[90px] lg:pt-16 [@media(max-height:700px)]:min-h-0">
61-
<div className="relative z-10 flex min-h-0 w-full max-w-[375px] flex-col bg-white shadow-2xl sm:rounded-xl sm:p-0 md:rounded-2xl lg:rounded-2xl [@media(min-width:375px)]:w-[340px]">
61+
<div className="relative z-10 flex min-h-0 w-full max-w-[375px] flex-col bg-white shadow-2xl sm:rounded-xl sm:p-0 md:rounded-2xl lg:rounded-2xl [@media(min-width:375px)]:w-[375px]">
6262
<div className="pointer-events-none absolute inset-0 rounded-2xl" />
6363

6464
<div

0 commit comments

Comments
 (0)