fix bug with relay view getting squished

This commit is contained in:
hzrd149
2024-02-10 09:08:19 +00:00
parent 8879641511
commit 4840146b15

View File

@@ -103,7 +103,7 @@ export default function RelaysView() {
else return nav; else return nav;
} else } else
return ( return (
<Flex gap="2" maxH="100vh" overflow="hidden"> <Flex gap="2" minH="100vh" overflow="hidden">
{nav} {nav}
<Outlet /> <Outlet />
</Flex> </Flex>