Skip to content

Commit

Permalink
Merge pull request #751 from sparcs-kaist/#750-bug-닉네임이-너무-길-때-새터반-정보…
Browse files Browse the repository at this point in the history
…가-잘리는-이

Fix: 새터반 택스트 너비 고정
  • Loading branch information
ybmin authored Feb 27, 2024
2 parents c02564f + 1bedcf2 commit 9a2a0b8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/web/src/pages/Event/Event2024SpringLeaderboard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,7 @@ const LeaderboardItem = ({ value, rank, isMe }: LeaderboardItemProps) => {
css={{
...theme.font16,
...theme.ellipsis,
minWidth: "78px",
...styleText(isMe ? -1 : rank),
}}
>
Expand Down Expand Up @@ -183,7 +184,7 @@ const LeaderboardItem = ({ value, rank, isMe }: LeaderboardItemProps) => {
overflow: "hidden",
whiteSpace: "nowrap",
textOverflow: "ellipsis",
maxWidth: "130px",
maxWidth: "100px",
color: theme.white,
...eventTheme.font10,
}}
Expand Down

0 comments on commit 9a2a0b8

Please sign in to comment.