Merge pull request #14474 from ramonlsouza/issue-14472

fix: Not able to see the guest waiting list, blocked view
This commit is contained in:
Anton Georgiev 2022-02-28 09:19:00 -05:00 committed by GitHub
commit 03e33545c4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -98,8 +98,6 @@ const WaitingUsersButton = styled(Button)`
const PendingUsers = styled.div`
display: flex;
height: 100%;
width: 100%;
flex-direction: column;
`;
@ -114,22 +112,12 @@ const MainTitle = styled.p`
const UsersWrapper = styled.div`
display: flex;
height: 100%;
width: 100%;
flex-direction: column;
position: relative;
`;
const Users = styled.div`
display: flex;
flex-direction: column;
overflow-x: hidden;
overflow-y: auto;
position: absolute;
top: 0;
bottom: 0;
height: 100%;
width: 100%;
`;
const CustomButton = styled(Button)`