Skip to content

Commit 3005dfa

Browse files
committed
design: 상세페이지 별점, 성급 정보 섹션 추가, 전체적인 레이아웃 수정
1 parent 5550356 commit 3005dfa

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/pages/roomDetailPage/RoomDetail.style.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1-
import ArrowSvg from "@/assets/icons/ic_arrow.svg?react";
21
import { Link } from "react-router-dom";
32
import styled from "styled-components";
43

54
import type { ColorKeys, TypoKeys } from "@/styles/theme";
65

6+
import ArrowSvg from "@/assets/icons/ic_arrow.svg?react";
7+
78
export const Container = styled.main`
89
background-color: ${({ theme }) => theme.color.greyScale7};
910
padding-bottom: 62px;

src/pages/roomDetailPage/RoomDetail.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ const RoomDetail = () => {
4444
draggable={true}
4545
/>
4646
<RoomInfo room={rawData} discount={discountRate} />
47-
<RoomNavBar room={rawData} discount={discountRate} roomId={productId} />
47+
<RoomNavBar room={rawData} roomId={productId} />
4848
</S.Container>
4949
);
5050
};

0 commit comments

Comments
 (0)