From ebfb6826f23c2cd2615e2fac1c1cd104c2a50eb2 Mon Sep 17 00:00:00 2001 From: Tyler Brown Cifu Shuster Date: Mon, 2 Nov 2020 17:10:06 -0800 Subject: [PATCH] fixes https://github.com/urbit/landscape/issues/132 --- .../views/landscape/components/Sidebar/Sidebar.tsx | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/pkg/interface/src/views/landscape/components/Sidebar/Sidebar.tsx b/pkg/interface/src/views/landscape/components/Sidebar/Sidebar.tsx index 6205658d7..a7b1a2c72 100644 --- a/pkg/interface/src/views/landscape/components/Sidebar/Sidebar.tsx +++ b/pkg/interface/src/views/landscape/components/Sidebar/Sidebar.tsx @@ -23,6 +23,14 @@ import { SidebarList } from "./SidebarList"; import { SidebarInvite } from './SidebarInvite'; import { roleForShip } from "~/logic/lib/group"; +const ScrollbarLessCol = styled(Col)` + scrollbar-width: none !important; + + ::-webkit-scrollbar { + display: none; + } +`; + interface SidebarProps { contacts: Rolodex; @@ -102,7 +110,7 @@ export function Sidebar(props: SidebarProps) { }; return ( - - + ); }