Better grid layouts

This commit is contained in:
Gregory Schier
2023-03-25 18:12:09 -07:00
parent 1c9381b2bd
commit 3ec88fc896
8 changed files with 329 additions and 286 deletions

View File

@@ -38,7 +38,11 @@ export const Sidebar = memo(function Sidebar({ className }: Props) {
ref={sidebarRef}
className={classnames(className, 'h-full relative grid grid-rows-[minmax(0,1fr)_auto]')}
>
<VStack as="ul" className="relative py-3 overflow-auto" draggable={false}>
<VStack
as="ul"
className="relative py-3 overflow-y-auto overflow-x-visible"
draggable={false}
>
<SidebarItems activeRequestId={activeRequest?.id} requests={requests} />
</VStack>
<HStack className="mx-1 pb-1" alignItems="center" justifyContent="end">