Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions src/features/home/ui/homeActionCardList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ export const ActionCardList = () => {
onClick={onListingsPageMove}
>
<div className="flex items-center justify-between text-white">
<p className="text-sm font-bold leading-tight opacity-[0.7]">핀포인트 기준</p>
<p className="text-sm font-bold leading-tight opacity-[0.7] hover:cursor-pointer">
핀포인트 기준
</p>
<div className="flex items-center justify-center">
<ArrowUpRight />
</div>
Expand All @@ -37,7 +39,9 @@ export const ActionCardList = () => {
onClick={onEligibilityPageMove}
>
<div className="flex items-center justify-between text-white">
<p className="text-sm font-bold leading-tight opacity-[0.7]">자격진단 기준</p>
<p className="text-sm font-bold leading-tight opacity-[0.7] hover:cursor-pointer">
자격진단 기준
</p>

<div className="flex items-center justify-center">
<ArrowUpRight />
Expand Down
5 changes: 4 additions & 1 deletion src/features/home/ui/homeQuickStatsList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,10 @@ export const QuickStatsList = () => {
<span>최대시간</span>
</div>

<div className="mt-2 flex gap-4" onClick={() => onSelectSection("pinpoints")}>
<div
className="mt-2 flex gap-4 hover:cursor-pointer"
onClick={() => onSelectSection("pinpoints")}
>
<span className="flex flex-col text-lg font-semibold leading-none">
<p>{line1}</p>
<p>{line2}</p>
Expand Down
2 changes: 1 addition & 1 deletion src/shared/ui/globalRender/globalRender.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ export const HomeLandingRender = ({ children, bottom }: Props) => {
</section>

<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">
<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]">
<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]">
<div className="pointer-events-none absolute inset-0 rounded-2xl" />

<div
Expand Down