Skip to content

Commit

Permalink
Fix: 너무 긴 아이디는 ... 으로 한줄로 표시되도록 처리 후 hover 시 풀네임이 보이도록 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
pp449 committed Oct 25, 2023
1 parent 1ea55cf commit 7bfa6df
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/components/RoundCheckIn/PlayerLists.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,15 @@ const MenuItem = styled.li<FlexVal>`
justify-content: center;
margin: 0 auto;
flex: ${(props) => props.flexVal};
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
&: hover {
white-space: normal;
overflow: visible;
text-overflow: unset;
}
`;

const DisqualificationButton = styled.button`
Expand Down

0 comments on commit 7bfa6df

Please sign in to comment.