From ce7b0c34608381095117bb21b76d6e3ea65d8914 Mon Sep 17 00:00:00 2001 From: Q Kim Date: Fri, 6 Oct 2023 14:32:51 +0900 Subject: [PATCH 1/2] =?UTF-8?q?design:=20=ED=95=84=ED=84=B0=EA=B0=80=20?= =?UTF-8?q?=EC=97=86=EC=9C=BC=EB=A9=B4=20=ED=83=9C=EA=B7=B8=20=EA=B3=B5?= =?UTF-8?q?=EA=B0=84=EB=8F=84=20=ED=91=9C=EC=8B=9C=ED=95=98=EC=A7=80=20?= =?UTF-8?q?=EC=95=8A=EC=9D=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/components/garden/GardenPostListHeader/index.tsx | 8 ++++---- 1 file changed, 4 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} - )} - + + )} ); }; From 36b535b06f20fb2dfaddb8120c8de3df88a0a9c4 Mon Sep 17 00:00:00 2001 From: Q Kim Date: Fri, 6 Oct 2023 15:01:37 +0900 Subject: [PATCH 2/2] =?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=EA=B8=80=EC=93=B0=EA=B8=B0=20=EB=B2=84?= =?UTF-8?q?=ED=8A=BC=20box-shadow?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/pages/garden/GardenPostList/GardenPostList.style.ts | 1 + 1 file changed, 1 insertion(+) 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`