Skip to content

Commit

Permalink
hotfix: 디테일 페이지 하단 margin 적용안되는 문제 해결
Browse files Browse the repository at this point in the history
  • Loading branch information
oooppq committed Jan 31, 2024
1 parent 6989000 commit c4e48b8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/perfumes/[id]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ const page = async ({ params, searchParams }: DetailPageProps) => {
// );

return (
<section className="mb-[186px]">
<section className="">
<Navbar id={params.id} initialWishState={scraped} />
<ImageSlider images={images} />
<PerfumeInfo
Expand Down
2 changes: 1 addition & 1 deletion components/detail/HereToBuy.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const HereTobuy = async ({ id }: BuyProps) => {
<hr className="my-11 mx-4 mborder-t-[1.5px] border-[#f7f7f7]" />
<div className="mx-4">
<div className="h2 mb-[30px]">여기서 구매할 수 있어요</div>
<div className="grid gap-y-3">
<div className="grid gap-y-3 mb-[166px]">
{data.purchaseList?.map(
({
title,
Expand Down

0 comments on commit c4e48b8

Please sign in to comment.