Skip to content

Commit

Permalink
Merge pull request #1329 from push-protocol/SDK-#1298-scrollbar-not-v…
Browse files Browse the repository at this point in the history
…isible-on-member-info

fix: scrollbar in member list in group info was not visible
  • Loading branch information
abhishek-01k authored May 31, 2024
2 parents cc8dc28 + 5f57d4a commit 7877b61
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,6 @@ export const PendingMembers = ({
<ProfileSection
flexDirection="column"
flex="1"
maxHeight="10rem"
overflow="hidden auto"
justifyContent="start"
borderRadius="12px"
theme={theme}
Expand Down Expand Up @@ -302,8 +300,6 @@ export const AcceptedMembers = ({
flexDirection="column"
zIndex="2"
justifyContent="start"
overflow="hidden auto"
maxHeight="15rem"
theme={theme}
padding='10px 0 0 0'
>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ export const ChatViewList: React.FC<IChatViewListProps> = (options: IChatViewLis
}

return () => {
// add comment
//Empty return
};
}, [chatAcceptStream, participantJoinStream]);

Expand Down Expand Up @@ -585,7 +585,7 @@ export const ChatViewList: React.FC<IChatViewListProps> = (options: IChatViewLis
};

//styles
const ChatViewListCard = styled(Section)<IThemeProps>`
const ChatViewListCard = styled(Section) <IThemeProps>`
&::-webkit-scrollbar-thumb {
background: ${(props) => props.theme.scrollbarColor};
border-radius: 10px;
Expand Down

0 comments on commit 7877b61

Please sign in to comment.