Skip to content

Commit 38fe5a9

Browse files
committed
fix(ui): Remove a faulty height attribute
A faulty calculated height attribute was used for the layout route of the results pages, which lead to the header disappearing when scrolling down a long page. Signed-off-by: Jyrki Keisala <[email protected]>
1 parent f3592fd commit 38fe5a9

File tree

1 file changed

+1
-1
lines changed
  • ui/src/routes/_layout/organizations/$orgId/products/$productId/repositories/$repoId/_layout

1 file changed

+1
-1
lines changed

ui/src/routes/_layout/organizations/$orgId/products/$productId/repositories/$repoId/_layout/route.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ const Layout = () => {
7676
];
7777

7878
return (
79-
<div className='flex h-[calc(100vh-4rem-2rem)] w-full gap-2 md:h-[calc(100vh-4rem-4rem)]'>
79+
<div className='flex h-full w-full gap-2'>
8080
<Sidebar sections={sections} />
8181
<Outlet />
8282
</div>

0 commit comments

Comments
 (0)