From 1f5fbe2c448e798472f5e057d346dc6ca823e74e Mon Sep 17 00:00:00 2001 From: Q Kim Date: Fri, 6 Oct 2023 18:02:25 +0900 Subject: [PATCH] =?UTF-8?q?design:=20=EB=AA=A8=EB=91=90=EC=9D=98=20?= =?UTF-8?q?=EC=A0=95=EC=9B=90=20=ED=97=A4=EB=8D=94=20=EB=B9=88=20=EA=B3=B5?= =?UTF-8?q?=EA=B0=84=20=EC=A0=9C=EA=B1=B0,=20=EA=B8=80=EC=93=B0=EA=B8=B0?= =?UTF-8?q?=20=EB=B2=84=ED=8A=BC=20box-shadow=20(#424)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * design: 필터가 없으면 태그 공간도 표시하지 않음 * design: 모두의 정원 글쓰기 버튼 box-shadow --- .../src/components/garden/GardenPostListHeader/index.tsx | 8 ++++---- .../pages/garden/GardenPostList/GardenPostList.style.ts | 1 + 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/frontend/src/components/garden/GardenPostListHeader/index.tsx b/frontend/src/components/garden/GardenPostListHeader/index.tsx index 8bb31c7d1..d362806cf 100644 --- a/frontend/src/components/garden/GardenPostListHeader/index.tsx +++ b/frontend/src/components/garden/GardenPostListHeader/index.tsx @@ -30,16 +30,16 @@ const GardenPostListHeader = ({ height="36px" fontSize="1.6rem" /> - - {selectedDictionaryPlant && ( + {selectedDictionaryPlant && ( + {selectedDictionaryPlant.name} - )} - + + )} ); }; diff --git a/frontend/src/pages/garden/GardenPostList/GardenPostList.style.ts b/frontend/src/pages/garden/GardenPostList/GardenPostList.style.ts index ff301817f..4a4ef7dd2 100644 --- a/frontend/src/pages/garden/GardenPostList/GardenPostList.style.ts +++ b/frontend/src/pages/garden/GardenPostList/GardenPostList.style.ts @@ -38,6 +38,7 @@ export const FixedButton = styled.button` background-color: ${(props) => props.theme.color.primary}; border-radius: 28px; + box-shadow: 0 0 5px ${(props) => props.theme.color.grayDark}; `; export const Sensor = styled.div`