fix(group): fixed height in members list

This commit is contained in:
trashtemp 2021-12-28 16:30:25 +01:00
parent 614ec68622
commit ef0644074c
WARNING! Although there is a key with this ID in the database it does not verify this commit! This commit is SUSPICIOUS.
GPG key ID: D1F0DB65081B0FC6

View file

@ -169,6 +169,9 @@ export const GroupMemberSidebar = observer(
return ( return (
<GenericSidebarBase> <GenericSidebarBase>
<Container>
{isTouchscreenDevice && <div>Group settings go here</div>}
</Container>
<MemberList entries={entries} context={channel} /> <MemberList entries={entries} context={channel} />
</GenericSidebarBase> </GenericSidebarBase>
); );
@ -192,7 +195,7 @@ export const ServerMemberSidebar = observer(
return ( return (
<GenericSidebarBase> <GenericSidebarBase>
<Container className="test"> <Container>
{isTouchscreenDevice && <div>Server settings go here</div>} {isTouchscreenDevice && <div>Server settings go here</div>}
</Container> </Container>
<MemberList entries={entries} context={channel} /> <MemberList entries={entries} context={channel} />