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
4 changes: 2 additions & 2 deletions src/components/mover/detail/LikeOutlineButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { cn } from "@/lib/utils/cn";
/**
* Figma: button/like/outlined
* - sm: 54×54 아이콘만
* - lg: 아이콘 + 라벨 (찜하기 / 찜 해제)
* - lg: 64px 높이, 아이콘 + 라벨 (찜하기 / 찜 해제)
*/
const likeOutlineButtonVariants = cva(
[
Expand All @@ -20,7 +20,7 @@ const likeOutlineButtonVariants = cva(
variants: {
size: {
sm: "size-54 gap-10 p-10",
lg: "h-54 w-full gap-4 px-16",
lg: "h-64 w-full gap-4 px-16",
},
},
defaultVariants: {
Expand Down
9 changes: 6 additions & 3 deletions src/components/mover/detail/MoverDetailActions.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,10 @@ export default function MoverDetailActions({
{requestButtonLabel}
</Button>

{/* href={calendarHref} */}
<Link
href={calendarHref}
className="border-border-brand text-text-brand rounded-16 hover:bg-background-brand-muted flex h-54 w-full items-center justify-center border text-[16px] font-semibold transition-colors"
className="border-border-brand bg-background-surface text-text-brand hover:bg-background-brand-muted rounded-16 inline-flex h-64 w-full items-center justify-center border p-16 text-[18px] font-semibold transition-colors"
>
기사님 일정 확인하기
</Link>
Expand Down Expand Up @@ -120,6 +121,7 @@ export function MoverDetailActionsSkeleton({
<div className="mx-auto flex w-full max-w-[600px] items-center gap-8">
<Skeleton className="rounded-16 size-54 shrink-0" />
<Skeleton className="rounded-16 h-54 min-w-0 flex-1" />
<Skeleton className="rounded-16 h-54 min-w-0 flex-1" />
</div>
</div>
);
Expand All @@ -135,8 +137,9 @@ export function MoverDetailActionsSkeleton({
{moverName} 기사님에게
<br /> 지정 견적을 요청해보세요!
</Text>
<Skeleton className="rounded-16 h-54 w-full" />
<Skeleton className="rounded-16 h-54 w-full" />
<Skeleton className="rounded-16 h-64 w-full" />
<Skeleton className="rounded-16 h-64 w-full" />
<Skeleton className="rounded-16 h-64 w-full" />
</section>
);
}
2 changes: 1 addition & 1 deletion src/components/mover/list/MoversFilters.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ export function MoversFilters({ filters }: MoversFiltersProps) {
value={keyword}
onChange={(event) => setKeyword(event.target.value)}
onClear={clearSearch}
placeholder="텍스트를 입력해 주세요."
placeholder="찾고 싶은 닉네임을 입력해보세요"
aria-label="기사님 검색"
className="w-full"
/>
Expand Down