Skip to content

Commit

Permalink
feat: 제품 상세 페이지 완성
Browse files Browse the repository at this point in the history
  • Loading branch information
bottlewook committed Jan 21, 2024
1 parent 020352c commit ebcf276
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
11 changes: 11 additions & 0 deletions src/app/product/[id]/page.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,17 @@
background-color: var(--white);
}

.accordionItem {
.container {
width: 100%;
border-top: 1px solid var(--gray);

&:last-of-type {
border-bottom: 1px solid var(--gray);
}
}
}

.accordionHeader {
display: flex;
align-items: center;
Expand Down
2 changes: 1 addition & 1 deletion src/app/product/[id]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ function ProductDetailsPage() {
</Flex>
</AccordionBody>
</AccordionItem>
<AccordionItem itemName="productDetails">
<AccordionItem itemName="productDetails" className={cx('accordionItem')}>
<AccordionHeader
className={cx('accordionHeader')}
openIcon={<DropdownArrow isRotate={false} color="gray200" />}
Expand Down

0 comments on commit ebcf276

Please sign in to comment.