mirror of
https://github.com/revoltchat/revite.git
synced 2024-11-25 08:30:58 -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 (
|
||||
<GenericSidebarBase>
|
||||
<Container>
|
||||
{isTouchscreenDevice && <div>Group settings go here</div>}
|
||||
{/*{isTouchscreenDevice && <div>Group settings go here</div>}*/}
|
||||
</Container>
|
||||
|
||||
<MemberList entries={entries} context={channel} />
|
||||
|
@ -197,7 +197,7 @@ export const ServerMemberSidebar = observer(
|
|||
return (
|
||||
<GenericSidebarBase>
|
||||
<Container>
|
||||
{isTouchscreenDevice && <div>Server settings go here</div>}
|
||||
{/*{isTouchscreenDevice && <div>Server settings go here</div>}*/}
|
||||
</Container>
|
||||
<MemberList entries={entries} context={channel} />
|
||||
</GenericSidebarBase>
|
||||
|
|
|
@ -47,7 +47,7 @@
|
|||
&::-webkit-scrollbar-thumb {
|
||||
min-height: 150px;
|
||||
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