mirror of
https://github.com/revoltchat/revite.git
synced 2024-11-29 02:10:59 -05:00
fix(settings): scrollbar
This commit is contained in:
parent
fdbd931ea7
commit
b7ec4a8b78
2 changed files with 3 additions and 3 deletions
|
@ -170,7 +170,7 @@ export const GroupMemberSidebar = observer(
|
||||||
return (
|
return (
|
||||||
<GenericSidebarBase>
|
<GenericSidebarBase>
|
||||||
<Container>
|
<Container>
|
||||||
{isTouchscreenDevice && <div>Group settings go here</div>}
|
{/*{isTouchscreenDevice && <div>Group settings go here</div>}*/}
|
||||||
</Container>
|
</Container>
|
||||||
|
|
||||||
<MemberList entries={entries} context={channel} />
|
<MemberList entries={entries} context={channel} />
|
||||||
|
@ -197,7 +197,7 @@ export const ServerMemberSidebar = observer(
|
||||||
return (
|
return (
|
||||||
<GenericSidebarBase>
|
<GenericSidebarBase>
|
||||||
<Container>
|
<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} />
|
||||||
</GenericSidebarBase>
|
</GenericSidebarBase>
|
||||||
|
|
|
@ -47,7 +47,7 @@
|
||||||
&::-webkit-scrollbar-thumb {
|
&::-webkit-scrollbar-thumb {
|
||||||
min-height: 150px;
|
min-height: 150px;
|
||||||
border-top: 56px solid transparent;
|
border-top: 56px solid transparent;
|
||||||
border-bottom: var(--bottom-navigation-height) solid transparent;
|
//border-bottom: var(--bottom-navigation-height) solid transparent;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue