Skip to content

Commit

Permalink
Fix: 새터반 택스트 너비 고정
Browse files Browse the repository at this point in the history
  • Loading branch information
ybmin committed Feb 23, 2024
1 parent c02564f commit 1bedcf2
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 1bedcf2

Please sign in to comment.