fix(developer): fixed height issue in dev tab

This commit is contained in:
trashtemp
2021-12-28 17:06:04 +01:00
parent ef0644074c
commit e814064001
3 changed files with 6 additions and 4 deletions

View File

@@ -22,11 +22,11 @@ import { GenericSidebarBase } from "../SidebarBase";
import MemberList, { MemberListGroup } from "./MemberList";
export const Container = styled.div`
margin-top: 48px;
padding-top: 48px;
${isTouchscreenDevice &&
css`
margin-top: 0;
padding-top: 0;
`}
`;
@@ -172,6 +172,7 @@ export const GroupMemberSidebar = observer(
<Container>
{isTouchscreenDevice && <div>Group settings go here</div>}
</Container>
<MemberList entries={entries} context={channel} />
</GenericSidebarBase>
);