From f2b09817fdf8dd6897b61f701d260f94249d612d Mon Sep 17 00:00:00 2001 From: se0jinYoon Date: Mon, 12 Aug 2024 23:19:39 +0900 Subject: [PATCH] =?UTF-8?q?design:=20=ED=85=85=20=EB=B7=B0=20=EA=B0=80?= =?UTF-8?q?=EC=9A=B4=EB=8D=B0=20=EC=A0=95=EB=A0=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/promiseList/components/RecentCard.tsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/pages/promiseList/components/RecentCard.tsx b/src/pages/promiseList/components/RecentCard.tsx index 4e7eef18..d9f1a5fb 100644 --- a/src/pages/promiseList/components/RecentCard.tsx +++ b/src/pages/promiseList/components/RecentCard.tsx @@ -68,7 +68,7 @@ const RecentCard = (props: RecentCardPropType) => { /> ) : ( - + )} ); @@ -108,3 +108,7 @@ const DashedDivider = styled.div` margin-bottom: 1.39rem; border-bottom: 1px dashed ${({ theme }) => theme.colors.grayScaleLG1}; `; + +const EmptyImage = styled(EmptyImg)` + width: 100%; +`;