From 76f9618357a379266fe3979dd7916717320fc3b7 Mon Sep 17 00:00:00 2001 From: Lee sang Yeop Date: Tue, 21 Nov 2023 14:29:33 +0900 Subject: [PATCH] =?UTF-8?q?Design(ParticipantLists):=20=EB=8C=80=ED=9A=8C?= =?UTF-8?q?=20=EC=B0=B8=EC=97=AC=EC=9E=90=20=EB=AA=A8=EB=8B=AC=EC=B0=BD=20?= =?UTF-8?q?=EB=94=94=EC=9E=90=EC=9D=B8=20=EC=96=B4=EB=91=90=EC=9A=B4?= =?UTF-8?q?=EC=83=89=20<->=20=EB=B0=9D=EC=9D=80=EC=83=89=20=EB=B3=80?= =?UTF-8?q?=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/Modal/ParticipantLists/index.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/Modal/ParticipantLists/index.tsx b/src/components/Modal/ParticipantLists/index.tsx index 8494e464..7c6df6b4 100644 --- a/src/components/Modal/ParticipantLists/index.tsx +++ b/src/components/Modal/ParticipantLists/index.tsx @@ -57,8 +57,8 @@ const ParticipantList = ({ leagueTitle }: ParticipantListProps) => { export default ParticipantList; const Container = styled.div` - background-color: #202b37; - color: white; + background-color: #white; + color: black; border-radius: 2rem; margin: 0 auto; width: 60rem; @@ -82,5 +82,5 @@ const MenuList = styled.li<{ isSelected: boolean }>` cursor: pointer; } - ${({ isSelected }) => isSelected && 'border-bottom: 2px solid white'}; + ${({ isSelected }) => isSelected && 'border-bottom: 2px solid black'}; `;