Skip to content

Commit

Permalink
Ensure long list of users doesn't overflow (#561)
Browse files Browse the repository at this point in the history
  • Loading branch information
antoinejaussoin authored Jul 18, 2023
1 parent be4ae89 commit 103de33
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions frontend/src/views/game/footer/GameFooter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,7 @@ const EndControlsContainer = styled.div`
const UsersContainer = styled.div`
grid-area: users;
padding-left: 10px;
overflow-x: scroll;
`;

const TimerContainer = styled.div`
Expand Down
1 change: 1 addition & 0 deletions frontend/src/views/game/footer/Users.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import useSession from '../useSession';
export default function Users() {
const { participants } = useParticipants();
const { session } = useSession();

return (
<AvatarGroup
max={50}
Expand Down

0 comments on commit 103de33

Please sign in to comment.