Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Design: 이미지 크기 수정, 글자 간격 수정 #163

Merged
merged 2 commits into from
Nov 30, 2023
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
3 changes: 1 addition & 2 deletions src/components/Detail/Calendar/Calendar.styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ export const SelectDatesText = styled.div`
font-style: normal;
font-weight: 600;
line-height: normal;
letter-spacing: -0.15rem;
`;

export const PriceText = styled.div`
Expand All @@ -26,5 +25,5 @@ export const PriceText = styled.div`
font-style: normal;
font-weight: 400;
line-height: normal;
letter-spacing: -0.04375rem;
letter-spacing: -0.02375rem;
`;
3 changes: 2 additions & 1 deletion src/components/Detail/PriceDisplay/PriceDisplay.styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ export const PriceContainer = styled.div`
justify-content: flex-end;
align-items: center;
gap: 6px;
margin-bottom: 0.5rem;
`;

export const SumText = styled.div`
Expand All @@ -13,7 +14,7 @@ export const SumText = styled.div`
font-style: normal;
font-weight: 700;
line-height: normal;
letter-spacing: -0.05625rem;
letter-spacing: -0.02625rem;
`;

export const PriceText = styled.div`
Expand Down
2 changes: 0 additions & 2 deletions src/components/Detail/ProductDetails/ProductDetail.styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ export const ProductName = styled.div`
font-style: normal;
font-weight: 700;
line-height: normal;
letter-spacing: -0.05rem;
`;

export const RoomName = styled.div`
Expand All @@ -20,7 +19,6 @@ export const RoomName = styled.div`
font-style: normal;
font-weight: 700;
line-height: normal;
letter-spacing: -0.08125rem;
`;

export const ProductPrice = styled.div`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ export const SelectorContainer = styled.div`
justify-content: space-between;
display: flex;
align-items: center;
margin-bottom: 1.5rem;
gap: 8px;
`;

Expand Down Expand Up @@ -46,7 +47,7 @@ export const LabelText = styled.div`
font-style: normal;
font-weight: 600;
line-height: normal;
letter-spacing: -0.15rem;
letter-spacing: -0.05rem;
`;

export const PriceText = styled.div`
Expand All @@ -56,7 +57,7 @@ export const PriceText = styled.div`
font-style: normal;
font-weight: 400;
line-height: normal;
letter-spacing: -0.04375rem;
letter-spacing: -0.01375rem;
`;

export const MinusButton = styled(Button)`
Expand Down
4 changes: 2 additions & 2 deletions src/components/DetailList/ProductInfo/ProductInfo.styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export const InfoTitleText = styled.div`
font-style: normal;
font-weight: 600;
line-height: normal;
letter-spacing: -0.15rem;
letter-spacing: -0.05rem;
`;

export const InfoDetailText = styled.div`
Expand All @@ -49,7 +49,7 @@ export const InfoDetailText = styled.div`
font-style: normal;
font-weight: 400;
line-height: normal;
letter-spacing: -0.04375rem;
letter-spacing: -0.02375rem;
`;

export const ItemContainer = styled.div`
Expand Down
2 changes: 0 additions & 2 deletions src/components/DetailList/ProductTitle/ProductTitle.styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ export const ProductType = styled.div`
font-style: normal;
font-weight: 700;
line-height: normal;
letter-spacing: -0.05rem;
`;

export const ProductName = styled.div`
Expand All @@ -20,7 +19,6 @@ export const ProductName = styled.div`
font-style: normal;
font-weight: 700;
line-height: normal;
letter-spacing: -0.08125rem;
`;

export const DetailsContainer = styled(Box)`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export const ItemImg = styled.div`

background-image: url("/src/assets/image/empty.png");
background-repeat: no-repeat;
background-size: cover;
background-size: contain;
object-fit: cover;
margin-right: 2rem;

Expand Down