fix: no overflow in group members list in overlay

pull/3083/head
yougotwill 9 months ago
parent 940feafece
commit 07cfa67cc9

@ -40,11 +40,16 @@ const StyledNoResults = styled.div`
`; `;
const StyledGroupMemberListContainer = styled.div` const StyledGroupMemberListContainer = styled.div`
display: flex;
flex-direction: column;
align-items: start;
padding: 0; padding: 0;
width: 100%; width: 100%;
height: 100%; height: 100%;
overflow-x: hidden; overflow-x: hidden;
overflow-y: auto; overflow-y: auto;
flex-grow: 1;
flex-shrink: 1;
border-top: 1px solid var(--border-color); border-top: 1px solid var(--border-color);
border-bottom: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color);

Loading…
Cancel
Save