Skip to content

Commit

Permalink
[FE] feat: 꿀조합 상세 이미지 크기 조정 (#805)
Browse files Browse the repository at this point in the history
  • Loading branch information
Leejin-Yang authored Oct 19, 2023
1 parent 08aeb2f commit 69c744c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/mocks/data/recipeDetail.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"id": 3,
"images": [],
"images": ["https://github.com/woowacourse-teams/2023-fun-eat/assets/78616893/1f0fd418-131c-4cf8-b540-112d762b7c34"],
"title": "초특급불닭콘치즈",
"content": "맛있는 불닭콘치즈덮밥을 만들기 위해서는 1번. 어쩌고저쩌고 2번. 어쩌고저쩌고 3번 맛있는 불닭콘치즈덮밥을 만들기 위해서는 1번. 어쩌고저쩌고 2번. 어쩌고저쩌고\n\n 3번맛있는 불닭콘치즈덮밥을 만들기 위해서는 1번. 어쩌고저쩌고 2번. 어쩌고저쩌고 3번맛있는 불닭콘치즈덮밥을 만들기 위해서는 1번. 어쩌고저쩌고 2번. 어쩌고저쩌고 3번맛있는 불닭콘치즈덮밥을 만들기 위해서는 1번. 어쩌고저쩌고 2번. 어쩌고저쩌고 3번맛있는 불닭콘치즈덮밥을 만들기 위해서는 1번. 어쩌고저쩌고 2번. 어쩌고저쩌고 3번맛있는 불닭콘치즈덮밥을 만들기 위해서는 1번. 어쩌고저쩌고 2번. 어쩌고저쩌고 3번",
"author": {
Expand Down
7 changes: 7 additions & 0 deletions frontend/src/pages/RecipeDetailPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -93,9 +93,16 @@ const RecipeImageContainer = styled.ul`
flex-direction: column;
gap: 20px;
align-items: center;
& > li {
width: 312px;
margin: 0 auto;
}
`;

const RecipeImage = styled.img`
width: 100%;
height: auto;
border-radius: 10px;
object-fit: cover;
`;
Expand Down

0 comments on commit 69c744c

Please sign in to comment.