Skip to content

Commit

Permalink
Merge pull request #232 from TheUpperPart/Design/#231
Browse files Browse the repository at this point in the history
Design(ParticipantLists): 대회 참여자 모달창 디자인 어두운색 <-> 밝은색 변경
  • Loading branch information
pp449 authored Nov 21, 2023
2 parents abb6486 + 76f9618 commit ac5643e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/Modal/ParticipantLists/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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'};
`;

0 comments on commit ac5643e

Please sign in to comment.