From 7bfa6df927d0deffbcd4c3d2e716d2962844ff5d Mon Sep 17 00:00:00 2001 From: Lee sang Yeop Date: Thu, 26 Oct 2023 03:18:26 +0900 Subject: [PATCH] =?UTF-8?q?Fix:=20=EB=84=88=EB=AC=B4=20=EA=B8=B4=20?= =?UTF-8?q?=EC=95=84=EC=9D=B4=EB=94=94=EB=8A=94=20...=20=EC=9C=BC=EB=A1=9C?= =?UTF-8?q?=20=ED=95=9C=EC=A4=84=EB=A1=9C=20=ED=91=9C=EC=8B=9C=EB=90=98?= =?UTF-8?q?=EB=8F=84=EB=A1=9D=20=EC=B2=98=EB=A6=AC=20=ED=9B=84=20hover=20?= =?UTF-8?q?=EC=8B=9C=20=ED=92=80=EB=84=A4=EC=9E=84=EC=9D=B4=20=EB=B3=B4?= =?UTF-8?q?=EC=9D=B4=EB=8F=84=EB=A1=9D=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/RoundCheckIn/PlayerLists.tsx | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/components/RoundCheckIn/PlayerLists.tsx b/src/components/RoundCheckIn/PlayerLists.tsx index fd60d55..8b642c7 100644 --- a/src/components/RoundCheckIn/PlayerLists.tsx +++ b/src/components/RoundCheckIn/PlayerLists.tsx @@ -130,6 +130,15 @@ const MenuItem = styled.li` 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`